SUBD/ForumDataModels/Models/IUserModel.cs

18 lines
379 B
C#
Raw Normal View History

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; }
}
}