Coursach/Course/DataModels/IUserModel.cs

13 lines
219 B
C#

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