blob: 7d07bb0941efafd9aa36261435ee51f7bf08b5dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using ServiceStack;
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// Interface IRestfulService
/// </summary>
[Logged]
public interface IRestfulService : IService
{
}
}
|