mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-06 18:54:57 +01:00
14 lines
337 B
C#
14 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);
|
|
}
|
|
}
|