Files
aliasvault/src/AliasGenerators/Identity/IIdentityGenerator.cs
Leendert de Borst 1904cc3122 Code style refactor
2024-06-11 20:42:26 +02:00

20 lines
735 B
C#

//-----------------------------------------------------------------------
// <copyright file="IIdentityGenerator.cs" company="lanedirt">
// Copyright (c) lanedirt. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
// </copyright>
//-----------------------------------------------------------------------
namespace AliasGenerators.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();
}