using System.ComponentModel; namespace ClientsContracts.ViewModels { public class ClientViewModel { public int? Id { get; set; } [DisplayName("ФИО")] public string Name { get; set; } [DisplayName("Отзывы")] public string Reviews { get; set; } [DisplayName("Статус")] public string Status { get; set; } [DisplayName("Сумма покупок")] public int? Amount { get; set; } } }