24 lines
551 B
C#
24 lines
551 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|