klhztrader/KLHZ.Trader.Core.Contracts/Declisions/Dtos/CachedValue.cs

10 lines
242 B
C#

namespace KLHZ.Trader.Core.Contracts.Declisions.Dtos
{
public class CachedValue
{
public DateTime Time { get; init; }
public decimal Count { get; init; }
public decimal Price { get; init; }
}
}