18 lines
379 B
C#
18 lines
379 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ForumDataModels.Models
|
|||
|
{
|
|||
|
public interface IUserModel
|
|||
|
{
|
|||
|
string Nickname { get; }
|
|||
|
string Password { get; }
|
|||
|
string Email { get; }
|
|||
|
DateTime RegistrationDate { get; }
|
|||
|
DateTime ActivityDate { get; }
|
|||
|
}
|
|||
|
}
|