Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Net/IRestfulService.cs

13 lines
210 B
C#
Raw Normal View History

2013-12-07 10:52:38 -05:00
using ServiceStack;
2013-12-07 10:52:38 -05:00
namespace MediaBrowser.Controller.Net
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Interface IRestfulService
/// </summary>
[Logged]
public interface IRestfulService : IService
2013-02-20 20:33:05 -05:00
{
}
}