/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
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Runtime.Serialization;
- using System.Xml.Serialization;
-
- namespace GolfSigma.Inventory.Model
- {
- public class GetTeeTimeCountRequest : IRequest
- {
- public GetTeeTimeCountRequest() { }
-
- #region IRequest Members
-
- public string HttpVerb
- {
- get { return "GET"; }
- }
-
- public string HttpPath
- {
- get { return "/teetime/count.xml"; }
- }
-
- public IDictionary<string, string> HttpParameters
- {
- get { return null; }
- }
-
- public IDictionary<string, string> HttpHeaders
- {
- get { return null; }
- }
-
- #endregion
- }
- }