//-----------------------------------------------------------------------
//
// Copyright (c) aliasvault. All rights reserved.
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
//
//-----------------------------------------------------------------------
namespace AliasServerDb;
using Microsoft.AspNetCore.Identity;
///
/// Admin user extending IdentityUser only used for access to the admin panel.
///
public class AdminUser : IdentityUser
{
///
/// Gets or sets the last time the password was changed.
///
public DateTime? LastPasswordChanged { get; set; }
}