| 123456789101112131415161718192021222324252627282930 |
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace PaintDotNet.Base.SettingModel
- {
- /// <summary>
- /// 3D展示 - 景深融合
- /// </summary>
- [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<string> Dyeing { get; set; }
- [XmlArrayAttribute("Z_value")]
- public List<string> Z_value { get; set; }
- public class Size
- {
- public int Width; // 图像宽度
- public int Height; // 图像高度
- }
- }
- }
|