//----------------------------------------------------------------------- // // Copyright (c) lanedirt. All rights reserved. // Licensed under the MIT license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Generators.Identity; /// /// IdentityGenerator interface. /// public interface IIdentityGenerator { /// /// Generates a random identity. /// /// Identity model object which contains the random identity. Task GenerateRandomIdentityAsync(); }