using ServiceStationDataModels.Models; using System.ComponentModel; namespace ServiceStationContracts.ViewModels { public class ClientViewModel : IClientModel { [DisplayName("ФИО")] public string FIO { get; set; } = string.Empty; [DisplayName("Пароль")] public string Password { get; set; } = string.Empty; [DisplayName("Бонусы")] public int Points { get; set; } public int Id { get; set; } } }