using ServiceStack.ServiceHost; using ServiceStack.WebHost.Endpoints; using System; namespace MediaBrowser.Common.Net { /// /// Interface IRestfulService /// public interface IRestfulService : IService, IRequiresRequestContext, IDisposable { void Configure(IAppHost appHost); } }