reeplace cerberos by thalos

This commit is contained in:
Sergio Matias Urquin
2025-05-18 18:46:31 -06:00
parent 5b3cd5589d
commit 4fdd80db55
40 changed files with 85 additions and 85 deletions

View File

@@ -0,0 +1,43 @@
// ***********************************************************************
// <copyright file="AzureAd.cs">
// AgileWebs
// </copyright>
// ***********************************************************************
namespace Core.Thalos.Adapters.Common.Constants
{
/// <summary>
/// Constants for Azure Active Directory.
/// </summary>
public class AzureAd
{
/// <summary>
/// The ClientId parameter.
/// </summary>
public const string ClientId = "AzureAdB2C:ClientId";
/// <summary>
/// The TenantId parameter.
/// </summary>
public const string TenantId = "AzureAdB2C:TenantId";
/// <summary>
/// The ClientSecret parameter.
/// </summary>
public const string ClientSecret = "AzureAdB2C:ClientSecret";
/// <summary>
/// The MicrosoftOnlineUri parameter.
/// </summary>
public const string MicrosoftOnlineUri = "https://login.microsoftonline.com/";
/// <summary>
/// The GraphUri parameter.
/// </summary>
public const string GraphUri = "https://graph.microsoft.com/.default";
/// <summary>
/// The Instance parameter.
/// </summary>
public const string Instance = "AzureAdB2C:Instance";
}
}