13 lines
325 B
C#
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();
|
|
}
|