PIbd-22_CourseWork_Hospital.../Polyclinic/HospitalDataModels/Models/IUserModel.cs

13 lines
248 B
C#

using HospitalDataModels.Enums;
namespace HospitalDataModels.Models
{
public interface IUserModel : IId
{
string FIO { get; }
string Email { get; }
string Password { get; }
UserRole Role { get; }
}
}