27 lines
794 B
C#
Raw Normal View History

2024-05-13 21:57:51 +04:00
using PrecastConcretePlantContracts.Attributes;
using PrecastConcretePlantDataModels.Models;
2024-04-07 22:12:50 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
2024-05-13 21:57:51 +04:00
[Column(visible: false)]
public int Id { get; set; }
2024-04-07 22:12:50 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "ФИО клиента", width: 150)]
public string ClientFIO { get; set; } = string.Empty;
2024-04-07 22:12:50 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Логин (эл. почта)", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
public string Email { get; set; } = string.Empty;
2024-04-07 22:12:50 +04:00
2024-05-13 21:57:51 +04:00
[Column(title: "Пароль", width: 150)]
public string Password { get; set; } = string.Empty;
2024-04-07 22:12:50 +04:00
}
}