mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-19 15:18:02 -04:00
30 lines
919 B
C#
30 lines
919 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="TopUserByAliases.cs" company="lanedirt">
|
|
// Copyright (c) lanedirt. 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 email aliases.
|
|
/// </summary>
|
|
public class TopUserByAliases
|
|
{
|
|
/// <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 aliases.
|
|
/// </summary>
|
|
public int AliasCount { get; set; }
|
|
}
|