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

13 lines
248 B
C#
Raw Normal View History

2024-05-01 23:49:06 +04:00
using HospitalDataModels.Enums;
namespace HospitalDataModels.Models
{
public interface IUserModel : IId
{
string FIO { get; }
string Email { get; }
string Password { get; }
UserRole Role { get; }
}
}