PIbd-22_Smirnov_A.A._Securi.../SecuritySystem/SecuritySystemContracts/ViewModels/ImplementerViewModel.cs

30 lines
809 B
C#
Raw Normal View History

2024-06-22 10:36:54 +04:00
using SecuritySystemContracts.Attributes;
using SecuritySystemDataModels.Models;
2024-05-08 08:37:10 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
2024-06-22 10:36:54 +04:00
[Column(visible: false)]
2024-05-08 08:37:10 +04:00
public int Id { get; set; }
2024-06-22 10:36:54 +04:00
[Column(title: "ФИО исполнителя", width: 150)]
2024-05-08 08:37:10 +04:00
public string ImplementerFIO { get; set; } = string.Empty;
2024-06-22 10:36:54 +04:00
[Column(title: "Пароль", width: 150)]
2024-05-08 08:37:10 +04:00
public string Password { get; set; } = string.Empty;
2024-06-22 10:36:54 +04:00
[Column(title: "Стаж", width: 150)]
2024-05-08 08:37:10 +04:00
public int WorkExperience { get; set; }
2024-06-22 10:36:54 +04:00
[Column(title: "Квалификация", width: 150)]
2024-05-08 08:37:10 +04:00
public int Qualification { get; set; }
}
}