12 lines
356 B
C#
12 lines
356 B
C#
namespace KLHZ.Trader.Core.Exchange.Models.Trading
|
|
{
|
|
public class SupportLevel
|
|
{
|
|
public decimal Value { get; init; }
|
|
public decimal LowValue { get; init; }
|
|
public decimal HighValue { get; init; }
|
|
public DateTime? LastLevelTime { get; init; }
|
|
public DateTime CalculatedAt { get; init; }
|
|
}
|
|
}
|