2024-06-19 14:38:52 +04:00
|
|
|
|
using FishFactoryDataModel.Models;
|
2024-05-12 19:24:51 +04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace FishFactoryContracts.ViewModels
|
|
|
|
|
{
|
2024-06-19 14:38:52 +04:00
|
|
|
|
public class ImplementerViewModel : IImplementerModel
|
2024-05-12 19:24:51 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("ФИО исполнителя")]
|
|
|
|
|
public string ImplementerFIO { get; set; }
|
|
|
|
|
[DisplayName("Пароль")]
|
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
[DisplayName("Опыт работы")]
|
|
|
|
|
public int WorkExperience { get; set; }
|
|
|
|
|
[DisplayName("Квалификация")]
|
|
|
|
|
public int Qualification { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|