PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/ViewModels/ClientViewModel.cs

28 lines
839 B
C#
Raw Permalink Normal View History

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