21 lines
770 B
C#
21 lines
770 B
C#
using System.ComponentModel;
|
|
using ClientsDataModels.Models;
|
|
|
|
namespace ClientsContracts.ViewModels
|
|
{
|
|
public class ClientViewModel : IClientModel
|
|
{
|
|
public int Id { get; set; } = 0;
|
|
[DisplayName("ФИО")]
|
|
public string Name { get; set; } = string.Empty;
|
|
[DisplayName("Сумма покупок")]
|
|
public float? Amount { get; set; } = null;
|
|
[DisplayName("Отзывы")]
|
|
public string? Reviews { get; set; } = string.Empty;
|
|
public int StatusId { get; set; } = 0;
|
|
[DisplayName("Статус")]
|
|
public string StatusName { get; set; } = string.Empty;
|
|
public string ViewAmount { get; set; } = string.Empty;
|
|
public string DocAmount { get; set; } = string.Empty;
|
|
}
|
|
} |