20 lines
426 B
C#
20 lines
426 B
C#
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 string Amount { get; set; }
|
|
}
|
|
}
|