using LawFimDataModels.Models; using System.ComponentModel; namespace LawFirmContracts.ViewModels { public class LawyerViewModel : ILawyerModel { [DisplayName("Номер юриста")] public int Id { get; set; } [DisplayName("Имя юриста")] public string FIO { get; set; } = string.Empty; [DisplayName("Телефон юриста")] public string Phone { get; set; } = string.Empty; [DisplayName("E-mail юриста")] public string Email { get; set; } = string.Empty; public int GuarantorId { get; set; } } }