20 lines
615 B
C#
20 lines
615 B
C#
using SchoolDataModels;
|
|
using System.ComponentModel;
|
|
|
|
namespace SchoolContracts.ViewModels
|
|
{
|
|
public class ExecutorViewModel : IExecutorModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("Фамилия")]
|
|
public string LastName { get; set; } = string.Empty;
|
|
[DisplayName("Имя")]
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string Login { get; set; } = string.Empty;
|
|
[DisplayName("Пароль")]
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public string PhoneNumber { get; set; } = string.Empty;
|
|
}
|
|
}
|