CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BindingModels/EmployeeBindingModel.cs

19 lines
468 B
C#
Raw Normal View History

2024-05-22 23:00:35 +04:00
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BindingModels {
public class EmployeeBindingModel : IEmployeeModel {
public int ID { get; set; }
public string EmployeeFIO { get; set; } = string.Empty;
public string Login { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}