16 lines
591 B
C#
16 lines
591 B
C#
namespace KLHZ.Trader.Core.Contracts.Declisions.Dtos
|
|
{
|
|
public class CachedValue //: ICachedValue
|
|
{
|
|
public DateTime Time { get; init; }
|
|
public long Count { get; init; }
|
|
public decimal Price { get; init; }
|
|
public decimal Value { get; init; }
|
|
public decimal Value2 { get; init; }
|
|
//public bool IsHistoricalData { get; init; }
|
|
//public required string Figi { get; init; } = string.Empty;
|
|
//public required string Ticker { get; init; } = string.Empty;
|
|
//public int Direction { get; init; }
|
|
}
|
|
}
|