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 AuthorizationAttemptsHistory { get; } // Город проживания int ResidenceCityId { get; } // Дата создания аккаунта (последние 10 лет) DateTime AccountCreationDate { get; } } }