blob: 7a1b2679517b9794440351e8b76fa1d3a62be3c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using ServiceStack.ServiceHost;
namespace MediaBrowser.Common.Net
{
/// <summary>
/// Interface IRestfulService
/// </summary>
public interface IRestfulService : IService
{
}
}
|