CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/ClientViewModel.cs

25 lines
651 B
C#
Raw Normal View History

2024-05-19 16:35:35 +04:00
using ElectronicsShopDataModels;
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.ViewModels
{
2024-05-22 23:00:35 +04:00
public class ClientViewModel : IClientModel {
public int ID { get; set; }
2024-05-19 16:35:35 +04:00
2024-05-22 23:00:35 +04:00
[DisplayName("ФИО клиента")]
public string ClientFIO { get; set; } = string.Empty;
[DisplayName("Почта клиента")]
public string Email { get; set; } = string.Empty;
[DisplayName("Пароль клиента")]
public string Password { get; set; } = string.Empty;
}
2024-05-19 16:35:35 +04:00
}