namespace WorkTracker.Configuration; public sealed class AppAuthOptions { public const string SectionName = "AppAuth"; public bool Enabled { get; init; } = false; public string DefaultUsername { get; init; } = "Admin"; public string DefaultUserId { get; init; } = "ADMIN"; }