PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/ResourceManagement.Client/WsTransfer/BaseObjectSearchResponse.cs

#
C# | 30 lines | 28 code | 2 blank | 0 comment | 0 complexity | 8b1b76c78dacbb4926eb6cf70fb6b488 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Xml.Serialization;
  4. using System.Text;
  5. namespace Microsoft.ResourceManagement.Client.WsTransfer
  6. {
  7. [XmlRoot(Namespace = Constants.Imda.Namespace)]
  8. public class BaseObjectSearchResponse
  9. {
  10. private List<PartialAttributeType> partialAttributes;
  11. public BaseObjectSearchResponse()
  12. {
  13. this.partialAttributes = new List<PartialAttributeType>();
  14. }
  15. [XmlElement(ElementName=Constants.Imda.PartialAttribute)]
  16. public List<PartialAttributeType> PartialAttributes
  17. {
  18. get
  19. {
  20. return this.partialAttributes;
  21. }
  22. set
  23. {
  24. this.partialAttributes = value;
  25. }
  26. }
  27. }
  28. }