namespace Galaeth.Services.Configuration; /// /// Configuration for the first user created if none other exist. /// public class InitialUserConfiguration { /// /// Username. /// public string Username { get; set; } /// /// Email address. /// public string Email { get; set; } /// /// Password. /// public string Password { get; set; } }