jellyfin/MediaBrowser.Common/Net/IRestfulService.cs

17 lines
369 B
C#
Raw Normal View History

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