using ElectronicsShopDataModels.Enums; using ElectronicsShopDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronicsShopContracts.ViewModels { public class EmployeeViewModel : IEmployeeModel { public int ID { get; set; } [DisplayName("ФИО сотрудника")] public string EmployeeFIO { get; set; } = string.Empty; [DisplayName("Логина сотрудника")] public string Login { get; set; } = string.Empty; [DisplayName("Пароль сотрудника")] public string Password { get; set; } = string.Empty; } }