sharp-trading/Currency.cs

12 lines
293 B
C#

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; }
}
}