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

WsGroupOrder.cs
using System.Collections.Generic;
using Newtonsoft.Json;

namespace BTCChina.WebSockets
{
	public clast WsGroupOrder
	{
		[JsonProperty("market", Required = Required.Always)]
		public string Market { get; set; }
		[JsonProperty("ask", Required = Required.Always)]
		public List Asks { get; set; }
		[JsonProperty("bid", Required = Required.Always)]
		public List Bids { get; set; }
	}
}