ThreeDataDemoModel.cs 716 B

123456789101112131415161718192021222324252627282930
  1. using System.Xml.Serialization;
  2. using System.Collections.Generic;
  3. namespace PaintDotNet.Base.SettingModel
  4. {
  5. /// <summary>
  6. /// 3D展示 - 景深融合
  7. /// </summary>
  8. [XmlRoot("Data")]
  9. public class ThreeDataDemoModel
  10. {
  11. [XmlElement("Size")]
  12. public Size size { get; set; }
  13. [XmlElement("Z_level")]
  14. public string Z_level { get; set; }
  15. [XmlArrayAttribute("Dyeing")]
  16. public List<string> Dyeing { get; set; }
  17. [XmlArrayAttribute("Z_value")]
  18. public List<string> Z_value { get; set; }
  19. public class Size
  20. {
  21. public int Width; // 图像宽度
  22. public int Height; // 图像高度
  23. }
  24. }
  25. }