PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFimDataModels/Models/IConsultationModel.cs

12 lines
312 B
C#
Raw Normal View History

namespace LawFimDataModels.Models
{
public interface IConsultationModel: IId
{
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
double Cost { get; }
2024-04-27 19:02:25 +04:00
DateTime ConsultationDate { get; }
public int CaseId { get; }
2024-04-27 19:02:25 +04:00
public int GuarantorId { get; }
}
}