8 lines
134 B
C#

namespace CandidateReviewDataModels.Models
{
public interface ICriterionModel : IId
{
string Name { get; }
}
}