PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/BindingModels/CaseBindingModel.cs

17 lines
547 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using LawCompanyDataModels.Enums;
using LawCompanyDataModels.Models;
namespace LawCompanyContracts.BindingModels
{
public class CaseBindingModel : ICaseModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public CaseStatus Status { get; set; } = CaseStatus.Неизвестен;
public string CaseType { get; set; } = string.Empty;
public DateTime DateCreate { get; set; }
public DateTime? DateImplement { get; set; }
public Dictionary<int, IClientModel> CaseClients { get; set; } = new();
}
}