klhztrader/KLHZ.Trader.Core.Contracts/Messaging/Dtos/AttachedInfo.cs

10 lines
250 B
C#

namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos
{
public class AttachedInfo
{
public required string Key { get; init; }
public decimal Value1 { get; init; }
public decimal Value2 { get; init; }
}
}