Files
aliasvault/apps/server/AliasVault.Admin/Main/Models/TopUserByEmails.cs
2025-09-03 14:59:14 +02:00

30 lines
920 B
C#

//-----------------------------------------------------------------------
// <copyright file="TopUserByEmails.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 a user with many stored emails.
/// </summary>
public class TopUserByEmails
{
/// <summary>
/// Gets or sets the user ID.
/// </summary>
public string UserId { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the username.
/// </summary>
public string Username { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the number of emails.
/// </summary>
public int EmailCount { get; set; }
}