|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KLHZ.Trader.Core.Math.Declisions.Dtos
|
|
{
|
|
public class CachedValue
|
|
{
|
|
public DateTime Time { get; init; }
|
|
public decimal Value { get; init; }
|
|
}
|
|
}
|