8 lines
221 B
C#
8 lines
221 B
C#
public class TrendContext
|
|
{
|
|
public string Parameter { get; set; } = null!;
|
|
public double PercentChange { get; set; }
|
|
public TimeSpan Duration { get; set; }
|
|
public string Direction { get; set; } = null!;
|
|
}
|