1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-13 01:12:59 +00:00
Files
CryptoExchange.Net/CryptoExchange.Net/Objects/Constants.cs
T
Jan Korf 8ec902951d 3.0 wip
2019-10-11 14:48:30 +02:00

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";
}
}