PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFimDataModels/Models/IConsultationModel.cs
2024-04-27 19:02:25 +04:00

12 lines
312 B
C#

namespace LawFimDataModels.Models
{
public interface IConsultationModel: IId
{
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
double Cost { get; }
DateTime ConsultationDate { get; }
public int CaseId { get; }
public int GuarantorId { get; }
}
}