mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 17:24:56 +00:00
13 lines
340 B
C#
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()
|
|
{
|
|
}
|
|
}
|