2024-12-09 02:10:45 +04:00
|
|
|
|
using CandidateReviewDataModels.Models;
|
2024-11-04 22:26:40 +04:00
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class CriterionViewModel : ICriterionModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|