2013-03-02 02:44:46 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IRestfulService
|
|
|
|
|
/// </summary>
|
2013-02-27 04:44:41 +00:00
|
|
|
|
public interface IRestfulService
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-03-02 02:44:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the routes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IEnumerable{RouteInfo}.</returns>
|
|
|
|
|
IEnumerable<RouteInfo> GetRoutes();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|