ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/ViewModels/ClientViewModel.cs

27 lines
863 B
C#
Raw Normal View History

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