using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace PaintDotNet.Base.SettingModel { [XmlRoot("ROOT")] public class ZAxisScanModel { [XmlArrayAttribute("Items")] public List items { get; set; } /// /// 图片对应的标尺信息 /// [XmlElement("Rule")] public PicConfigModel.Rule rule { get; set; } public class Item { [XmlElement("fileName")] public string fileName; [XmlElement("height")] public decimal height; } } }