namespace OpenLimits { using System.Collections.Generic; public class TradesResponse { readonly public string market; readonly public IEnumerable trades; public TradesResponse(string market, IEnumerable trades) { this.market = market; this.trades = trades; } } }