Files
aliasvault/apps/server/AliasVault.Admin/Main/Models/TopUserByCredentials.cs
2025-08-24 14:30:50 +02:00

30 lines
944 B
C#

//-----------------------------------------------------------------------
// <copyright file="TopUserByCredentials.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 high number of credentials.
/// </summary>
public class TopUserByCredentials
{
/// <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 credentials.
/// </summary>
public int CredentialCount { get; set; }
}