PIbd-22_Isaeva_A.I._FishFac.../FishFactoryContracts/ViewModels/ImplementerViewModel.cs

19 lines
601 B
C#
Raw Normal View History

2024-06-19 14:38:52 +04:00
using FishFactoryDataModel.Models;
using System.ComponentModel;
namespace FishFactoryContracts.ViewModels
{
2024-06-19 14:38:52 +04:00
public class ImplementerViewModel : IImplementerModel
{
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; }
}
}