csharp/aabiryukov/CryptoMarketApi/Api/BtcChinaApi/WebSockets/WsOrder.cs

WsOrder.cs
using Newtonsoft.Json;

namespace BTCChina.WebSockets
{
	public clast WsOrder
	{
		[JsonProperty("price", Required = Required.Always)]
		public decimal Price { get; set; }
		[JsonProperty("type", Required = Required.Always)]
		public string OrderType { get; set; }
		[JsonProperty("totalamount", Required = Required.Always)]
		public decimal TotalAmount { get; set; }
	}
}