mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-25 14:27:52 -05:00
30 lines
1.2 KiB
C#
30 lines
1.2 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="RecentUsageStatistics.cs" company="aliasvault">
|
|
// Copyright (c) aliasvault. All rights reserved.
|
|
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace AliasVault.Admin.Main.Models;
|
|
|
|
/// <summary>
|
|
/// Model representing comprehensive recent usage statistics for the last 72 hours.
|
|
/// </summary>
|
|
public class RecentUsageStatistics
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the list of users with most aliases created in the last 72 hours.
|
|
/// </summary>
|
|
public List<RecentUsageAliases> TopUsersByAliases72h { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of users with most emails received in the last 72 hours.
|
|
/// </summary>
|
|
public List<RecentUsageEmails> TopUsersByEmails72h { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of IP addresses with most registrations in the last 72 hours.
|
|
/// </summary>
|
|
public List<RecentUsageRegistrations> TopIpsByRegistrations72h { get; set; } = new();
|
|
}
|