using System.ComponentModel; namespace BeautySalonContracts.ViewModels { public class EmployeeViewModel { public int Id { get; set; } [DisplayName("Имя")] public string Name { get; set; } = string.Empty; [DisplayName("Фамилия")] public string Surname { get; set; } = string.Empty; [DisplayName("Логин")] public string Login { get; set; } = string.Empty; [DisplayName("Пароль")] public string Password { get; set; } = string.Empty; [DisplayName("Телефон")] public string Phone { get; set; } = string.Empty; } }