namespace CryptoExchange.Net.Objects
{
///
/// Constants
///
public class Constants
{
///
/// GET Http method
///
public const string GetMethod = "GET";
///
/// POST Http method
///
public const string PostMethod = "POST";
///
/// DELETE Http method
///
public const string DeleteMethod = "DELETE";
///
/// PUT Http method
///
public const string PutMethod = "PUT";
///
/// Json content type header
///
public const string JsonContentHeader = "application/json";
///
/// Form content type header
///
public const string FormContentHeader = "application/x-www-form-urlencoded";
}
}