13 lines
269 B
C#
Raw Normal View History

2024-11-04 18:31:27 +04:00
using CourseWorkDataModels.Enums;
namespace CourseWorkDataModels.Models
{
public interface ICriterionModel : IId
{
string Name { get; }
CriterionTypeEnum Type { get; }
string? Description { get; }
int Weight { get; }
}
}