You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
583 B
C#

2 months ago
namespace TradeManageNew.APIClients
{
public static class MemoryCacheKeys
{
/// <summary>
/// Daylight API access token key.
/// </summary>
public const string DAYLIGHT_ACCESS_TOKEN_KEY = "DaylightAccessToken";
/// <summary>
/// Xpo API access token key.
/// </summary>
public const string XPO_ACCESS_TOKEN_KEY = "XPOAccessToken";
/// <summary>
2 months ago
/// Fedex API access token key prefix.
2 months ago
/// </summary>
2 months ago
public const string FEDEX_ACCESS_TOKEN_PREFIX = "FedexAccessToken";
2 months ago
}
}