//----------------------------------------------------------------------- // // Copyright (c) lanedirt. 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 a user with high storage usage. /// public class TopUserByStorage { /// /// 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 storage size in bytes. /// public long StorageBytes { get; set; } /// /// Gets or sets the human-readable storage size. /// public string StorageDisplaySize { get; set; } = string.Empty; }