// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.Services.Options; /// /// Configuration for the first user created if none other exist. /// public class InitialUserOptions { /// /// Username. /// public string Username { get; set; } /// /// Email address. /// public string Email { get; set; } /// /// Password. /// public string Password { get; set; } }