SUBD/ForumDataModels/Models/IUserModel.cs

18 lines
385 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
{
2023-04-16 21:46:06 +04:00
public interface IUserModel : IId
{
string Nickname { get; }
string Password { get; }
string Email { get; }
DateTime RegistrationDate { get; }
DateTime ActivityDate { get; }
}
}