PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/BindingModels/ConsultationBindingModel.cs

15 lines
422 B
C#
Raw Normal View History

using LawCompanyDataModels.Models;
namespace LawCompanyContracts.BindingModels
{
2024-05-01 23:48:28 +04:00
public class ConsultationBindingModel : IConsultationModel
{
public int Id { get; set; }
public double Cost { get; set; }
public DateTime ConsultationDate { get; set; }
public int CaseId { get; set; }
public int GuarantorId { get; set; }
public Dictionary<int, ILawyerModel> ConsultationLawyers { get; set; } = new();
}
}