12 lines
No EOL
294 B
C#
12 lines
No EOL
294 B
C#
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";
|
|
} |