mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
22 lines
648 B
C#
22 lines
648 B
C#
namespace CryptoExchange.Net.Objects
|
|
{
|
|
/// <summary>
|
|
/// Constants
|
|
/// </summary>
|
|
public class Constants
|
|
{
|
|
/// <summary>
|
|
/// Json content type header
|
|
/// </summary>
|
|
public const string JsonContentHeader = "application/json";
|
|
/// <summary>
|
|
/// Form content type header
|
|
/// </summary>
|
|
public const string FormContentHeader = "application/x-www-form-urlencoded";
|
|
/// <summary>
|
|
/// Placeholder key for when request body should be set to the value of this KVP
|
|
/// </summary>
|
|
public const string BodyPlaceHolderKey = "_BODY_";
|
|
}
|
|
}
|