23 lines
795 B
C#
23 lines
795 B
C#
using ServiceStationDataModels;
|
|
using System.ComponentModel;
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
{
|
|
public class ExecutorViewModel : IExecutorModel
|
|
{
|
|
[DisplayName("Имя")]
|
|
public string FirstName { get; set; } = string.Empty;
|
|
[DisplayName("Фамилия")]
|
|
public string LastName { get; set; } = string.Empty;
|
|
[DisplayName("Email")]
|
|
public string Email { get; set; } = string.Empty;
|
|
[DisplayName("Пароль")]
|
|
public string Password { get; set; } = string.Empty;
|
|
[DisplayName("Телефон")]
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
[DisplayName("Логин")]
|
|
public string Login { get; set; } = string.Empty;
|
|
public int ID { get; set; }
|
|
}
|
|
}
|