Модели данных для Исполнителя

This commit is contained in:
Софья Якобчук 2024-05-27 02:44:51 +04:00
parent 67f4dc1593
commit 1724d0f4cf
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ namespace LawCompanyDataModels.Models
Dictionary<int, IClientModel> CaseClients { get; }
string Name { get; }
CaseStatus Status { get; }
string CaseType { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
public int ExecutorId { get; }

View File

@ -4,7 +4,7 @@
{
Dictionary<int, IClientModel> VisitClients { get; }
DateTime VisitDate { get; }
int HearingId { get; }
int? HearingId { get; }
public int ExecutorId { get; }
}
}