using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ForumDataModels.Models { public interface IUserModel : IId { string Nickname { get; } string Password { get; } string Email { get; } DateTime RegistrationDate { get; } DateTime ActivityDate { get; } } }