PIbd-32_Bulatova_K.R._COP_10/COP/ClientsContracts/ViewModels/ClientViewModel.cs

21 lines
770 B
C#
Raw Normal View History

2024-10-29 09:22:02 +04:00
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;
2024-10-29 13:48:26 +04:00
public string ViewAmount { get; set; } = string.Empty;
2024-10-29 09:22:02 +04:00
public string DocAmount { get; set; } = string.Empty;
}
}