12 lines
354 B
C#
12 lines
354 B
C#
namespace TrafagSalesExporter.Security;
|
|
|
|
public sealed class AdminAccessOptions
|
|
{
|
|
public const string SectionName = "AdminAccess";
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
public string Username { get; set; } = "admin";
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|