evasina2312@gmail.com 603bd39185 лаб 6
2023-05-10 11:00:22 +04:00

18 lines
481 B
C#

using System.ComponentModel;
namespace ComputersShopContracts.ViewModels
{
public class ImplementerViewModel
{
public int Id { get; set; }
[DisplayName("Имя")]
public string ImplementerFIO { get; set; } = string.Empty;
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
[DisplayName("Опыт")]
public int WorkExperience { get; set; }
[DisplayName("Квалификация")]
public int Qualification { get; set; }
}
}