mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
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);
|
|
}
|
|
}
|