19 lines
443 B
C#
19 lines
443 B
C#
using CandidateReviewDataModels.Enums;
|
|
using CandidateReviewDataModels.Models;
|
|
|
|
namespace CandidateReviewContracts.BindingModels
|
|
{
|
|
public class CriterionBindingModel : ICriterionModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public CriterionTypeEnum Type { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public int Weight { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|