galaeth-draft/Galaeth.Services/Interfaces/IInitialUserService.cs
2024-11-17 09:31:01 +00:00

13 lines
325 B
C#

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();
}