/Source/ResourceManagement.Client/WsTransfer/PartialAttribute.cs

# · C# · 19 lines · 18 code · 1 blank · 0 comment · 0 complexity · e26dd5c62a62f486a62ec2e3f8605885 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Xml.Serialization;
  4. using System.Xml;
  5. using System.Text;
  6. namespace Microsoft.ResourceManagement.Client.WsTransfer
  7. {
  8. [XmlRoot(Namespace=Constants.Imda.Namespace)]
  9. public class PartialAttributeType
  10. {
  11. public PartialAttributeType()
  12. {
  13. this.Values = new List<XmlNode>();
  14. }
  15. [XmlAnyElement(Namespace=Constants.Rm.Namespace)]
  16. public List<XmlNode> Values;
  17. }
  18. }