using ServiceStationDataModels; using System.ComponentModel; namespace ServiceStationContracts.ViewModels { public class ClientViewModel : IClientModel { [DisplayName("Имя")] public string FirstName { get; set; } = string.Empty; [DisplayName("Фамилия")] public string LastName { get; set; } = string.Empty; [DisplayName("Email")] public string Email { get; set; } = string.Empty; [DisplayName("Пароль")] public string Password { get; set; } = string.Empty; [DisplayName("Телефон")] public string PhoneNumber { get; set; } = string.Empty; [DisplayName("Логин")] public string Login { get; set; } = string.Empty; [DisplayName("Бонусы")] public int Point { get; set; } public int ID { get; set; } } }