2023-04-07 19:22:59 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-05-16 22:01:03 +04:00
|
|
|
|
using UniversityModels.Enums;
|
2023-04-07 19:22:59 +04:00
|
|
|
|
using UniversityModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace UniversityContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class UserBindingModel : IUserModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Login { get; set; } = string.Empty;
|
2023-05-16 22:01:03 +04:00
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
public Role Role { get; set; }
|
|
|
|
|
}
|
2023-04-07 19:22:59 +04:00
|
|
|
|
}
|