15 lines
337 B
C#
15 lines
337 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|