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