using System; namespace MediaBrowser.Common.Net { /// /// Class RouteInfo /// public class RouteInfo { /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } /// /// Gets or sets the verbs. /// /// The verbs. public string Verbs { get; set; } /// /// Gets or sets the type of the request. /// /// The type of the request. public Type RequestType { get; set; } } }