20 lines
525 B
C#
Raw Normal View History

using ServiceStationDataModels.Models;
2024-04-30 01:41:35 +03:00
using System.ComponentModel;
namespace ServiceStationContracts.ViewModels
{
public class ExecutorViewModel : IExecutorModel
{
2024-08-10 18:43:15 +04:00
public int Id { get; set; }
[DisplayName("Email")]
2024-04-30 01:41:35 +03:00
public string Email { get; set; } = string.Empty;
2024-08-10 18:43:15 +04:00
2024-04-30 01:41:35 +03:00
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
2024-08-10 18:43:15 +04:00
[DisplayName("ФИО исполнителя")]
public string ExecutorFIO { get; set; } = string.Empty;
}
2024-04-30 01:41:35 +03:00
}