Coursach/Course/DataModels/Models/IUserModel.cs

13 lines
226 B
C#
Raw Normal View History

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