using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Monitor
{
///
/// 数值坐标参数
///
public class NumericCoordParameters : JsonModel
{
///
/// 轴坐标
///
public AxisCoordinator AxisCoord { get; set; }
///
/// 轴特殊刻度
///
public List AxisLabels { get; set; }
}
}