2024-11-04 22:26:40 +04:00
|
|
|
|
using CandidateReviewDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class AssessmentBindingModel : IAssessmentModel
|
|
|
|
|
{
|
|
|
|
|
|
2024-12-09 02:10:45 +04:00
|
|
|
|
public int? UserId { get; set; }
|
2024-11-04 22:26:40 +04:00
|
|
|
|
|
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2024-12-14 02:43:44 +04:00
|
|
|
|
//public Dictionary<int, (int, int)> AssessmentCriterions { get; set; } = new();
|
2024-12-09 02:10:45 +04:00
|
|
|
|
|
|
|
|
|
public int? ResumeId { get; set; }
|
2024-11-04 22:26:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|