2023-04-06 20:27:21 +04:00
|
|
|
|
using FurnitureFactoryDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ManagerBindingModel : IManagerModel
|
|
|
|
|
{
|
|
|
|
|
public string UserName { get; set; } = string.Empty;
|
2023-04-06 22:37:40 +04:00
|
|
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
public string Role { get; set; } = string.Empty;
|
2023-04-06 20:27:21 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|