Coursach/Course/DataModels/IUserModel.cs

13 lines
219 B
C#
Raw Normal View History

namespace DataModels
2024-04-03 13:23:32 +04:00
{
public interface IUserModel
{
int Id { get; }
string Email { get; }
string Name { get; }
string Login { get; }
string Password { get; }
}
}