mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-13 01:56:58 -05:00
13 lines
225 B
C#
13 lines
225 B
C#
using MediaBrowser.Model.Services;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IRestfulService
|
|
/// </summary>
|
|
[Logged]
|
|
public interface IRestfulService : IService
|
|
{
|
|
}
|
|
}
|