Coursach/Course/DataModels/Models/IUserModel.cs
2024-04-03 13:23:32 +04:00

13 lines
226 B
C#

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