PIbd-32_Turner_I.A._COP_10/COP/ClientsContracts/ViewModels/ClientViewModel.cs

20 lines
424 B
C#
Raw Normal View History

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; }
}
}