18 lines
323 B
C#
Raw Normal View History

2023-04-07 19:22:59 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UniversityModels.Enums;
2023-04-07 19:22:59 +04:00
namespace UniversityModels.Models
{
public interface IUserModel
{
string Login { get; }
string Password { get; }
Role Role { get; }
2023-04-07 19:22:59 +04:00
}
}