24 lines
740 B
C#
Raw Normal View History

2024-05-17 23:32:45 +04:00
using BarContracts.Attributes;
using BarDataModels.Models;
2024-05-08 23:27:46 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BarContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
2024-05-17 23:32:45 +04:00
[Column(visible: false)]
public int Id { get; set; }
[Column(title: "ФИО клиента", width: 150)]
public string ClientFIO { get; set; } = string.Empty;
[Column(title: "Логин (эл. почта)", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string Email { get; set; } = string.Empty;
[Column(title: "Пароль", width: 150)]
public string Password { get; set; } = string.Empty;
2024-05-08 23:27:46 +04:00
}
}