mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-28 02:06:31 +00:00
18 lines
455 B
C#
18 lines
455 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";
|
|
}
|
|
}
|