sharp-trading/bittrex/BittrexCurrency.cs

19 lines
347 B
C#
Raw Normal View History

2017-11-23 13:03:36 +01:00
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;
}
}
}