Files
Daybreak/Daybreak/Configuration/SecretKeys.cs
T

13 lines
340 B
C#

namespace Daybreak.Configuration;
public class SecretKeys
{
public static readonly SecretKeys AadApplicationId = new() { Key = "AadApplicationId" };
public static readonly SecretKeys AadTenantId = new() { Key = "AadTenantId" };
public string Key { get; private set; } = string.Empty;
private SecretKeys()
{
}
}