jellyfin/MediaBrowser.Common/Net/IRestfulService.cs

17 lines
369 B
C#
Raw Normal View History

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
{
/// <summary>
/// Gets the routes.
/// </summary>
/// <returns>IEnumerable{RouteInfo}.</returns>
IEnumerable<RouteInfo> GetRoutes();
2013-02-21 01:33:05 +00:00
}
}