/GolfSigma.Inventory/Model/Get/GetTeeTimeCount.cs

http://github.com/golfsigma/inventory-client · C# · 37 lines · 30 code · 7 blank · 0 comment · 0 complexity · 96acb7efde743a034b1cb7049aaa48d7 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.Serialization;
  5. using System.Xml.Serialization;
  6. namespace GolfSigma.Inventory.Model
  7. {
  8. public class GetTeeTimeCountRequest : IRequest
  9. {
  10. public GetTeeTimeCountRequest() { }
  11. #region IRequest Members
  12. public string HttpVerb
  13. {
  14. get { return "GET"; }
  15. }
  16. public string HttpPath
  17. {
  18. get { return "/teetime/count.xml"; }
  19. }
  20. public IDictionary<string, string> HttpParameters
  21. {
  22. get { return null; }
  23. }
  24. public IDictionary<string, string> HttpHeaders
  25. {
  26. get { return null; }
  27. }
  28. #endregion
  29. }
  30. }