mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
16 lines
595 B
C#
16 lines
595 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 static readonly SecretKeys ApmUri = new() { Key = "ApmUri" };
|
|
public static readonly SecretKeys ApmServiceAccount = new() { Key = "ApmServiceAccount" };
|
|
public static readonly SecretKeys ApmServiceKey = new() { Key = "ApmServiceKey" };
|
|
|
|
public string Key { get; private set; } = string.Empty;
|
|
private SecretKeys()
|
|
{
|
|
}
|
|
}
|