12 lines
205 B
C#
12 lines
205 B
C#
using ServiceStack.ServiceHost;
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IRestfulService
|
|
/// </summary>
|
|
public interface IRestfulService : IService
|
|
{
|
|
}
|
|
}
|