TemplatePath.cs 365 B

1234567891011121314151617
  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 SHJX.Service.Common.ReadXML.CustomXmlSerializer.Model
  8. {
  9. public class TemplatePath
  10. {
  11. [XmlAttribute]
  12. public string Name;
  13. [XmlAttribute]
  14. public string Value;
  15. }
  16. }