22 lines
408 B
C#
22 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Models
|
|
{
|
|
public class ChartPoint
|
|
{
|
|
/// <summary>
|
|
/// 值
|
|
/// </summary>
|
|
public double Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|