//----------------------------------------------------------------------- // // 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; /// /// Extends IdentityRole with a string type. /// public class AdminRole : IdentityRole { /// /// Initializes a new instance of the class. /// public AdminRole() : base() { } /// /// Initializes a new instance of the class. /// /// Role name. public AdminRole(string roleName) : base(roleName) { } }