19 lines
427 B
C#
19 lines
427 B
C#
namespace Core.Cerberos.Adapters.Common.Constants
|
|
{
|
|
/// <summary>
|
|
/// Constants for schemes.
|
|
/// </summary>
|
|
public class Schemes
|
|
{
|
|
/// <summary>
|
|
/// The heath scheme.
|
|
/// </summary>
|
|
public const string HeathScheme = "HeathScheme";
|
|
|
|
/// <summary>
|
|
/// The azure scheme.
|
|
/// </summary>
|
|
public const string AzureScheme = "AzureScheme";
|
|
}
|
|
}
|