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