added the beginning of a service stack abstraction

This commit is contained in:
LukePulverenti
2013-03-01 21:44:46 -05:00
parent 9f8aa880aa
commit 7bca933af0
13 changed files with 99 additions and 29 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
namespace MediaBrowser.Common.Net
{
/// <summary>
@@ -6,5 +7,10 @@ namespace MediaBrowser.Common.Net
/// </summary>
public interface IRestfulService
{
/// <summary>
/// Gets the routes.
/// </summary>
/// <returns>IEnumerable{RouteInfo}.</returns>
IEnumerable<RouteInfo> GetRoutes();
}
}