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
573 B
C#
20 lines
573 B
C#
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>
|
|
/// Fedex API access token key.
|
|
/// </summary>
|
|
public const string FEDEX_ACCESS_TOKEN_KEY = "FedexAccessToken";
|
|
}
|
|
} |