RouteInfo.cs 670 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace MediaBrowser.Common.Net
  3. {
  4. /// <summary>
  5. /// Class RouteInfo
  6. /// </summary>
  7. public class RouteInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the path.
  11. /// </summary>
  12. /// <value>The path.</value>
  13. public string Path { get; set; }
  14. /// <summary>
  15. /// Gets or sets the verbs.
  16. /// </summary>
  17. /// <value>The verbs.</value>
  18. public string Verbs { get; set; }
  19. /// <summary>
  20. /// Gets or sets the type of the request.
  21. /// </summary>
  22. /// <value>The type of the request.</value>
  23. public Type RequestType { get; set; }
  24. }
  25. }