using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models
{
///
/// 实时曲线数据的缓存
///
public class CacheRtChartData
{
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 值
///
public double Value { get; set; }
}
}