15 lines
486 B
C#
15 lines
486 B
C#
using KLHZ.Trader.Core.Contracts.Messaging.Dtos.Intarfaces;
|
|
|
|
namespace KLHZ.Trader.Core.Math.Declisions.Dtos
|
|
{
|
|
public class ProcessedPrice : IProcessedPrice
|
|
{
|
|
public required string Processor { get; set; }
|
|
public bool IsHistoricalData { get; set; }
|
|
public decimal Value { get; set; }
|
|
public required string Figi { get; set; }
|
|
public required string Ticker { get; set; }
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|