/Source/ResourceManagement.Client/WsEnumeration/Selection.cs
# · C# · 29 lines · 28 code · 1 blank · 0 comment · 0 complexity · b35a5bdb5b8983e5a0d476abb32ab31b MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Xml.Serialization;
- using System.Text;
-
- namespace Microsoft.ResourceManagement.Client.WsEnumeration
- {
- [XmlRoot(Namespace=Constants.Rm.Namespace)]
- public class Selection
- {
- public Selection()
- {
- this.@string = new List<string>();
- }
- private List<String> stringList;
- [XmlElement()]
- public List<String> @string
- {
- get
- {
- return stringList;
- }
- set
- {
- stringList = value;
- }
- }
- }
- }