jellyfin/MediaBrowser.Controller/Net/IRestfulService.cs

13 lines
210 B
C#
Raw Normal View History

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