mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-26 20:08:22 -05:00
21 lines
745 B
C#
21 lines
745 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="IIdentityGenerator.cs" company="lanedirt">
|
|
// Copyright (c) lanedirt. All rights reserved.
|
|
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace AliasVault.Generators.Identity;
|
|
|
|
/// <summary>
|
|
/// IdentityGenerator interface.
|
|
/// </summary>
|
|
public interface IIdentityGenerator
|
|
{
|
|
/// <summary>
|
|
/// Generates a random identity.
|
|
/// </summary>
|
|
/// <returns>Identity model object which contains the random identity.</returns>
|
|
Task<Models.Identity> GenerateRandomIdentityAsync();
|
|
}
|