13 lines
269 B
C#
13 lines
269 B
C#
using CourseWorkDataModels.Enums;
|
|
|
|
namespace CourseWorkDataModels.Models
|
|
{
|
|
public interface ICriterionModel : IId
|
|
{
|
|
string Name { get; }
|
|
CriterionTypeEnum Type { get; }
|
|
string? Description { get; }
|
|
int Weight { get; }
|
|
}
|
|
}
|