ZipXmlModel.cs 482 B

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