/Source/ResourceManagement.Client/WsEnumeration/Selection.cs
C# | 29 lines | 28 code | 1 blank | 0 comment | 0 complexity | b35a5bdb5b8983e5a0d476abb32ab31b MD5 | raw file
1using System; 2using System.Collections.Generic; 3using System.Xml.Serialization; 4using System.Text; 5 6namespace Microsoft.ResourceManagement.Client.WsEnumeration 7{ 8 [XmlRoot(Namespace=Constants.Rm.Namespace)] 9 public class Selection 10 { 11 public Selection() 12 { 13 this.@string = new List<string>(); 14 } 15 private List<String> stringList; 16 [XmlElement()] 17 public List<String> @string 18 { 19 get 20 { 21 return stringList; 22 } 23 set 24 { 25 stringList = value; 26 } 27 } 28 } 29}