/Source/ResourceManagement.Client/WsTransfer/BaseObjectSearchResponse.cs
# · C# · 30 lines · 28 code · 2 blank · 0 comment · 0 complexity · 8b1b76c78dacbb4926eb6cf70fb6b488 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Xml.Serialization;
- using System.Text;
-
- namespace Microsoft.ResourceManagement.Client.WsTransfer
- {
- [XmlRoot(Namespace = Constants.Imda.Namespace)]
- public class BaseObjectSearchResponse
- {
- private List<PartialAttributeType> partialAttributes;
- public BaseObjectSearchResponse()
- {
- this.partialAttributes = new List<PartialAttributeType>();
- }
-
- [XmlElement(ElementName=Constants.Imda.PartialAttribute)]
- public List<PartialAttributeType> PartialAttributes
- {
- get
- {
- return this.partialAttributes;
- }
- set
- {
- this.partialAttributes = value;
- }
- }
- }
- }