CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/EmployeeViewModel.cs
Илья Федотов 768dce69f1 Models fix
2024-05-22 23:00:35 +04:00

25 lines
683 B
C#

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;
}
}