using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Monitor
{
///
/// 枚举坐标参数
///
public class EnumCoordParameters : JsonList
{
///
/// 枚举值
///
public int EnumValue { get; set; }
///
/// 显示颜色
///
public string DisplayColor { get; set; }
}
}