2023-10-24 22:46:56 +04:00
|
|
|
|
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("Сумма покупок")]
|
2023-10-28 09:02:31 +04:00
|
|
|
|
public string Amount { get; set; }
|
2023-10-24 22:46:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|