PageRenderTime 55ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/ResourceManagement.Client/WsTransfer/TransferRequest.cs

#
C# | 23 lines | 19 code | 4 blank | 0 comment | 0 complexity | df3324fba5974f2c8b57233e969afa63 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.WsTransfer
  6. {
  7. public class TransferRequest
  8. {
  9. public TransferRequest()
  10. {
  11. }
  12. [XmlIgnore()]
  13. public ResourceReferenceProperty ResourceReferenceProperty;
  14. [XmlIgnore()]
  15. public ResourceLocaleProperty ResourceLocaleProperty;
  16. [XmlIgnore()]
  17. public ResourceTimeProperty ResourceTimeProperty;
  18. }
  19. }