blob: 7fc6bb61ec1fb04dd1ba0ad5e0662adef71944b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using ServiceStack.ServiceHost;
using ServiceStack.WebHost.Endpoints;
using System;
namespace MediaBrowser.Common.Net
{
/// <summary>
/// Interface IRestfulService
/// </summary>
public interface IRestfulService : IService, IRequiresRequestContext, IDisposable
{
void Configure(IAppHost appHost);
}
}
|