using KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces; 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; } } }