//----------------------------------------------------------------------- // // 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; /// /// User view model. /// public class UserViewModel { /// /// Gets or sets the id. /// public string Id { get; set; } = string.Empty; /// /// Gets or sets the user display info (username + status badges). /// public UserDisplay User { get; set; } = new(); /// /// Gets or sets the CreatedAt timestamp. /// public DateTime CreatedAt { get; set; } /// /// Gets or sets the vault count. /// public int VaultCount { get; set; } /// /// Gets or sets the credential count. /// public int CredentialCount { get; set; } /// /// Gets or sets the email claim count. /// public int EmailClaimCount { get; set; } /// /// Gets or sets the total number of received emails across all email claims. /// public int ReceivedEmailCount { get; set; } /// /// Gets or sets the total vault storage that this user takes up in kilobytes. /// public int VaultStorageInKb { get; set; } /// /// Gets or sets the last activity date of the user. /// public DateTime? LastActivityDate { get; set; } }