15 lines
411 B
C#
15 lines
411 B
C#
namespace SpaceGame.Api.Auth.Simulation;
|
|
|
|
public sealed class AuthOptions
|
|
{
|
|
public string ConnectionString { get; set; } = string.Empty;
|
|
public List<SeedUserOptions> DevSeedUsers { get; set; } = [];
|
|
}
|
|
|
|
public sealed class SeedUserOptions
|
|
{
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public List<string> Roles { get; set; } = [];
|
|
}
|