using System; using System.Collections.Generic; using System.Text; namespace Knoks.CryptoExchanges.Entities.Args { public class ExchangePairRateArg { public string PairSymbol { get; set; } public decimal Open { get; set; } public decimal High { get; set; } public decimal Low { get; set; } public decimal Close { get; set; } //public decimal Volume { get; set; } public DateTime StartDate { get; set; } } }