/Source/ResourceManagement.Client/WsEnumeration/Selection.cs

# · C# · 29 lines · 28 code · 1 blank · 0 comment · 0 complexity · b35a5bdb5b8983e5a0d476abb32ab31b 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.WsEnumeration
  6. {
  7. [XmlRoot(Namespace=Constants.Rm.Namespace)]
  8. public class Selection
  9. {
  10. public Selection()
  11. {
  12. this.@string = new List<string>();
  13. }
  14. private List<String> stringList;
  15. [XmlElement()]
  16. public List<String> @string
  17. {
  18. get
  19. {
  20. return stringList;
  21. }
  22. set
  23. {
  24. stringList = value;
  25. }
  26. }
  27. }
  28. }