WorkTracker/Configuration/AppAuthOptions.cs

12 lines
294 B
C#
Raw Normal View History

2026-04-20 14:11:18 +02:00
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";
}