18 lines
323 B
C#
18 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UniversityModels.Enums;
|
|
|
|
namespace UniversityModels.Models
|
|
{
|
|
public interface IUserModel
|
|
{
|
|
string Login { get; }
|
|
string Password { get; }
|
|
Role Role { get; }
|
|
}
|
|
|
|
}
|