Files
Daybreak/Daybreak.Core/Configuration/SecretKeys.cs
T

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()
{
}
}