aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/RouteInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Net/RouteInfo.cs')
-rw-r--r--MediaBrowser.Common/Net/RouteInfo.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Common/Net/RouteInfo.cs b/MediaBrowser.Common/Net/RouteInfo.cs
deleted file mode 100644
index 379aff9c5..000000000
--- a/MediaBrowser.Common/Net/RouteInfo.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-
-namespace MediaBrowser.Common.Net
-{
- /// <summary>
- /// Class RouteInfo
- /// </summary>
- public class RouteInfo
- {
- /// <summary>
- /// Gets or sets the path.
- /// </summary>
- /// <value>The path.</value>
- public string Path { get; set; }
-
- /// <summary>
- /// Gets or sets the verbs.
- /// </summary>
- /// <value>The verbs.</value>
- public string Verbs { get; set; }
-
- /// <summary>
- /// Gets or sets the type of the request.
- /// </summary>
- /// <value>The type of the request.</value>
- public Type RequestType { get; set; }
- }
-}