2023-04-28 19:30:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ForumDataModels
|
|
|
|
|
{
|
|
|
|
|
public interface IUserModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Username { get; }
|
|
|
|
|
string Email { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
DateTime RegistrationDate { get; }
|
2023-04-30 13:45:16 +04:00
|
|
|
|
int RoleId { get; }
|
2023-04-28 19:30:16 +04:00
|
|
|
|
}
|
|
|
|
|
}
|