mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
13 lines
210 B
C#
13 lines
210 B
C#
using ServiceStack;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IRestfulService
|
|
/// </summary>
|
|
[Logged]
|
|
public interface IRestfulService : IService
|
|
{
|
|
}
|
|
}
|