sharp-trading/Currency.cs

12 lines
293 B
C#
Raw Permalink Normal View History

2017-11-23 13:03:36 +01:00
using System;
namespace sharp.trading
{
public class Currency : MarshalByRefObject
{
public String Symbol { get; protected set; }
public String Name { get; protected set; }
public double WithdrawalFee { get; protected set; }
public string BaseAddress { get; protected set; }
}
}