23 lines
472 B
C#
23 lines
472 B
C#
namespace Galaeth.Services.Configuration;
|
|
|
|
/// <summary>
|
|
/// Configuration for the first user created if none other exist.
|
|
/// </summary>
|
|
public class InitialUserConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Username.
|
|
/// </summary>
|
|
public string Username { get; set; }
|
|
|
|
/// <summary>
|
|
/// Email address.
|
|
/// </summary>
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// Password.
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
}
|