PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmContracts/BindingModels/CaseBindingModel.cs

17 lines
587 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 LawFimDataModels.Enums;
using LawFimDataModels.Models;
namespace LawFirmContracts.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();
}
}