//----------------------------------------------------------------------- // // Copyright (c) aliasvault. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Admin.Main.Models; /// /// Model representing comprehensive recent usage statistics for the last 72 hours. /// public class RecentUsageStatistics { /// /// Gets or sets the list of users with most aliases created in the last 72 hours. /// public List TopUsersByAliases72h { get; set; } = new(); /// /// Gets or sets the list of users with most emails received in the last 72 hours. /// public List TopUsersByEmails72h { get; set; } = new(); /// /// Gets or sets the list of IP addresses with most registrations in the last 72 hours. /// public List TopIpsByRegistrations72h { get; set; } = new(); /// /// Gets or sets the list of IP addresses with most mobile login requests in the last 72 hours. /// public List TopIpsByMobileLogins72h { get; set; } = new(); /// /// Gets or sets the list of IP addresses with most account deletions in the last 30 days. /// public List TopIpsByDeletions30d { get; set; } = new(); /// /// Gets or sets the list of usernames with most account deletions in the last 30 days. /// public List TopUsernamesByDeletions30d { get; set; } = new(); }