using CandidateReviewDataModels.Models; namespace CandidateReviewContracts.SearchModels { public class AssessmentSearchModel { public int? UserId { get; set; } public int? ResumeId { get; set; } public int? Id { get; set; } public Dictionary AssessmentCriterions = new(); } }