18 lines
609 B
C#
Raw Permalink Normal View History

2024-05-20 22:12:07 +04:00
using CarRepairShopContracts.Attributes;
using CarRepairShopDataModels;
2024-04-06 19:58:28 +04:00
namespace CarRepairShopContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
2024-05-20 22:12:07 +04:00
[Column(visible: false)]
public int Id { get; set; }
[Column(title: "ФИО клиента", width: 150)]
public string ClientFIO { get; set; } = string.Empty;
[Column(title: "Email клиента", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string Email { get; set; } = string.Empty;
[Column(title: "Пароль", width: 150)]
public string Password { get; set; } = string.Empty;
2024-04-06 19:58:28 +04:00
}
}