using SushiDataModels; using System.ComponentModel; namespace SushiContracts.ViewModels { public class EmployeeViewModel : IEmployeeModel { public int Id { get; set; } [DisplayName("Имя")] public string EmployeeName { get; set; } = string.Empty; [DisplayName("Должность")] public string EmployeePosition { get; set; } = string.Empty; [DisplayName("Телефон")] public long EmployeePhone { get; set; } } }