25 lines
651 B
C#
25 lines
651 B
C#
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
|
|
{
|
|
public class ClientViewModel : IClientModel {
|
|
public int ID { get; set; }
|
|
|
|
[DisplayName("ФИО клиента")]
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Почта клиента")]
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Пароль клиента")]
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
}
|