2026-02-18 17:11:13 +01:00
|
|
|
namespace WorkTracker.Configuration;
|
|
|
|
|
|
|
|
|
|
public sealed class SingleUserOptions
|
|
|
|
|
{
|
|
|
|
|
public const string SectionName = "SingleUser";
|
|
|
|
|
|
|
|
|
|
public bool SeedOnStartup { get; init; } = true;
|
|
|
|
|
|
2026-03-17 20:08:02 +01:00
|
|
|
public string Username { get; init; } = "Admin";
|
2026-02-18 17:11:13 +01:00
|
|
|
|
2026-03-17 20:08:02 +01:00
|
|
|
public string Password { get; init; } = "Disagio";
|
2026-02-18 17:11:13 +01:00
|
|
|
}
|