20 lines
517 B
C#

using ServiceStationDataModels.Models;
using System.ComponentModel;
namespace ServiceStationContracts.ViewModels
{
public class ExecutorViewModel : IExecutorModel
{
public int Id { get; set; }
[DisplayName("Email")]
public string Email { get; set; } = string.Empty;
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
[DisplayName("ФИО исполнителя")]
public string FIO { get; set; } = string.Empty;
}
}