17 lines
294 B
C#
17 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UniversityModels.Models
|
|
{
|
|
public interface IUserModel
|
|
{
|
|
string Login { get; }
|
|
string Password { get; }
|
|
int RoleId { get; }
|
|
}
|
|
|
|
}
|