using System.Xml.Serialization; using System.Collections.Generic; namespace PaintDotNet.Base.SettingModel { /// /// 3D展示 - 景深融合 /// [XmlRoot("Data")] public class ThreeDataDemoModel { [XmlElement("Size")] public Size size { get; set; } [XmlElement("Z_level")] public string Z_level { get; set; } [XmlArrayAttribute("Dyeing")] public List Dyeing { get; set; } [XmlArrayAttribute("Z_value")] public List Z_value { get; set; } public class Size { public int Width; // 图像宽度 public int Height; // 图像高度 } } }