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
|
|
|
|
|
|
|
|
|
namespace UniversityModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IUserModel
|
|
|
|
|
{
|
|
|
|
|
string Login { get; }
|
|
|
|
|
string Password { get; }
|
2023-05-16 22:01:03 +04:00
|
|
|
|
Role Role { get; }
|
2023-04-07 19:22:59 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|