CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/EmployeeViewModel.cs

25 lines
683 B
C#
Raw Normal View History

2024-05-22 23:00:35 +04:00
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;
}
}