19 lines
633 B
C#
19 lines
633 B
C#
using FishFactoryContracts.Attributes;
|
|
|
|
namespace FishFactoryContracts.ViewModels
|
|
{
|
|
public class ImplementerViewModel
|
|
{
|
|
[Column(visible: false)]
|
|
public int Id { get; set; }
|
|
[Column(title: "ФИО исполнителя", gridViewAutoSize: GridViewAutoSize.Fill, isUseAutoSize: true)]
|
|
public string ImplementerFIO { get; set; }
|
|
[Column(title: "Пароль", width: 100)]
|
|
public string Password { get; set; }
|
|
[Column(title: "Опыт работы", width: 50)]
|
|
public int WorkExperience { get; set; }
|
|
[Column(title: "Квалификация", width: 50)]
|
|
public int Qualification { get; set; }
|
|
}
|
|
}
|