using System.Collections.Generic; namespace MediaBrowser.Common.Net { /// /// Interface IRestfulService /// public interface IRestfulService { /// /// Gets the routes. /// /// IEnumerable{RouteInfo}. IEnumerable GetRoutes(); } }