| 123456789101112131415161718192021222324252627282930 |
- 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<Item> items { get; set; }
- /// <summary>
- /// 图片对应的标尺信息
- /// </summary>
- [XmlElement("Rule")]
- public PicConfigModel.Rule rule { get; set; }
- public class Item
- {
- [XmlElement("fileName")]
- public string fileName;
- [XmlElement("height")]
- public decimal height;
- }
- }
- }
|