sharp-trading/VolumeRate.cs

17 lines
256 B
C#

using System;
namespace sharp.trading
{
public struct VolumeRate
{
public Double Volume { get; set; }
public Double Price { get; set; }
public VolumeRate(Double Volume,Double Price)
{
this.Volume = Volume;
this.Price = Price;
}
}
}