2023-04-16 21:10:11 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ForumDataModels.Models
|
|
|
|
|
{
|
2023-04-16 21:46:06 +04:00
|
|
|
|
public interface IUserModel : IId
|
2023-04-16 21:10:11 +04:00
|
|
|
|
{
|
|
|
|
|
string Nickname { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
string Email { get; }
|
|
|
|
|
DateTime RegistrationDate { get; }
|
|
|
|
|
DateTime ActivityDate { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|