PageRenderTime 36ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/ResourceManagement.Client/WsEnumeration/EnumerationResponse.cs

#
C# | 14 lines | 12 code | 1 blank | 1 comment | 0 complexity | ffe554ce6ea7c2a4ac70285e80969bc4 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Xml;
  4. using System.Xml.Serialization;
  5. using System.Text;
  6. namespace Microsoft.ResourceManagement.Client.WsEnumeration
  7. {
  8. [XmlRoot(Namespace=Constants.WsEnumeration.Namespace)]
  9. public class EnumerateResponse : PullResponse
  10. {
  11. // this is identical to a PullResponse
  12. }
  13. }