using System; using sharp.json; namespace sharp.trading.bittrex { public class BittrexCurrency : Currency { public BittrexCurrency(JSON json) { this.Symbol = json["Currency"].String; this.Name = json["CurrencyLong"].String; this.WithdrawalFee = json["TxFee"].Double; this.BaseAddress = json["BaseAddress"].String; } } }