39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
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
|
|
{
|
|
|
|
//ID пользователя
|
|
public int UserID { get; set; }
|
|
//ID роли (клиент)
|
|
public int RoleID { get; set; }
|
|
|
|
|
|
[DisplayName("Имя")]
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Фамилия")]
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Логин")]
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Почта")]
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Пароль")]
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Номер телефона")]
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
}
|
|
}
|