//-----------------------------------------------------------------------
//
// Copyright (c) lanedirt. 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();
}