IRestfulService.cs 205 B

1234567891011
  1. using ServiceStack.ServiceHost;
  2. namespace MediaBrowser.Common.Net
  3. {
  4. /// <summary>
  5. /// Interface IRestfulService
  6. /// </summary>
  7. public interface IRestfulService : IService
  8. {
  9. }
  10. }