ZipXmlModel.cs 508 B

12345678910111213141516171819202122
  1. using PaintDotNet.Base.SettingModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Xml.Serialization;
  8. namespace PaintDotNet.Base.Functionodel
  9. {
  10. [XmlRoot("ROOT")]
  11. public class ZipXmlModel
  12. {
  13. public class PicName
  14. {
  15. public string name { get; set; }
  16. }
  17. public List<PicName> picNameList { get; set; }
  18. public PicConfigModel.Rule rule { get; set; }
  19. }
  20. }