galaeth-draft/Galaeth.Services/Interfaces/IInitialUserService.cs

13 lines
325 B
C#
Raw Normal View History

2024-11-17 10:31:01 +01:00
namespace Galaeth.Services.Interfaces;
/// <summary>
/// Service responsible for creating the initial user if no other users exist.
/// </summary>
public interface IInitialUserService
{
/// <summary>
/// If an initial user is required, then create it.
/// </summary>
Task CreateFirstUserIfRequiredAsync();
}