using LawFimDataModels.Models; using System.ComponentModel; namespace LawFirmContracts.ViewModels { public class ConsultationViewModel : IConsultationModel { [DisplayName("Номер консультации")] public int Id { get; set; } [DisplayName("Цена консультации")] public double Cost { get; set; } [DisplayName("Дело")] public string CaseName { get; set; } = string.Empty; public int CaseId { get; set; } [DisplayName("Имя поручителя")] public string GuarantorName { get; set; } = string.Empty; public int GuarantorId { get; set; } public Dictionary ConsultationLawyers { get; set; } = new(); } }