12345678910111213141516171819202122 |
- using PaintDotNet.Base.SettingModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace PaintDotNet.Base.Functionodel
- {
- [XmlRoot("ROOT")]
- public class ZipXmlModel
- {
- public class PicName
- {
- public string name { get; set; }
- }
-
- public List<PicName> picNameList { get; set; }
- public PicConfigModel.Rule rule { get; set; }
- }
- }
|