2024-07-23 21:32:13 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace BeautySalonContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("Имя")]
|
2024-07-24 21:04:21 +03:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Фамилия")]
|
|
|
|
|
public string Surname { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Логин")]
|
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Пароль")]
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
[DisplayName("Телефон")]
|
|
|
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
|
}
|
2024-07-23 21:32:13 +04:00
|
|
|
|
}
|