using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Metis.ParameterSet { /// /// 图像设置 - 参数 /// [XmlRoot("ROOT")] public class ImageMenu { /// /// 参数model /// [XmlElement("ListParam")] public List ListParam { get; set; } public class ImageParam { /// /// 功能ID /// [XmlElement("menuId")] public int menuId { get; set; } /// /// 参数键 /// [XmlElement("param_key")] public string param_key { get; set; } /// /// 参数类型的枚举值 /// [XmlElement("param_type")] public int param_type { get; set; } /// /// 参数值 /// [XmlElement("param_value")] public string param_value { get; set; } /// /// 参数格式化后的值 /// public object value; } } }