26 lines
623 B
C#
26 lines
623 B
C#
// <copyright file="InitialUserOptions.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
namespace Astral.Services.Options;
|
|
|
|
/// <summary>
|
|
/// Configuration for the first user created if none other exist.
|
|
/// </summary>
|
|
public class InitialUserOptions
|
|
{
|
|
/// <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; }
|
|
}
|