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

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