jellyfin/MediaBrowser.Controller/Net/IRestfulService.cs

13 lines
210 B
C#
Raw Normal View History

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