15 lines
460 B
C#
15 lines
460 B
C#
using LawFimDataModels.Models;
|
|
|
|
namespace LawFirmContracts.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();
|
|
}
|
|
}
|