24 lines
551 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface IAccountModel: IId
{
// Логин
string Login { get; }
// Даты последних попыток авторизации
List<DateTime> AuthorizationAttemptsHistory { get; }
// Город проживания
int ResidenceCityId { get; }
// Дата создания аккаунта (последние 10 лет)
DateTime AccountCreationDate { get; }
}
}