//-----------------------------------------------------------------------
//
// 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 users with most emails received in the last 72 hours.
///
public class RecentUsageEmails
{
///
/// Gets or sets the user ID.
///
public string UserId { get; set; } = string.Empty;
///
/// Gets or sets the username.
///
public string Username { get; set; } = string.Empty;
///
/// Gets or sets the number of emails received in the last 72 hours.
///
public int EmailCount72h { get; set; }
///
/// Gets or sets a value indicating whether the account is disabled/blocked.
///
public bool IsDisabled { get; set; }
///
/// Gets or sets the date when the user registered their account.
///
public DateTime RegistrationDate { get; set; }
}