PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/BindingModels/ConsultationBindingModel.cs
2024-05-01 02:33:49 +04:00

15 lines
467 B
C#

using LawCompanyDataModels.Models;
namespace LawCompanyContracts.BindingModels
{
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();
}
}