namespace DataModels
{
public interface IUserModel
int Id { get; }
string Email { get; }
string Name { get; }
string Login { get; }
string Password { get; }
}