添加项目文件。
This commit is contained in:
48
CapMachine.Wpf/Models/ChartRtValue.cs
Normal file
48
CapMachine.Wpf/Models/ChartRtValue.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using Arction.Wpf.Charting.Axes;
|
||||
using Arction.Wpf.Charting.SeriesXY;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 曲线实时数据模型
|
||||
/// </summary>
|
||||
public class ChartRtValue
|
||||
{
|
||||
public ChartRtValue()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
public string? Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 值
|
||||
/// </summary>
|
||||
public double Value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max
|
||||
/// </summary>
|
||||
public double Max { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Min
|
||||
/// </summary>
|
||||
public double Min { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单位
|
||||
/// </summary>
|
||||
public string? Unit { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user