mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 17:24:46 +03:00
update to service stack v4
This commit is contained in:
18
MediaBrowser.Controller/Net/IHasResultFactory.cs
Normal file
18
MediaBrowser.Controller/Net/IHasResultFactory.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using MediaBrowser.Common.Net;
|
||||
using ServiceStack.Web;
|
||||
|
||||
namespace MediaBrowser.Controller.Net
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface IHasResultFactory
|
||||
/// Services that require a ResultFactory should implement this
|
||||
/// </summary>
|
||||
public interface IHasResultFactory : IRequiresRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the result factory.
|
||||
/// </summary>
|
||||
/// <value>The result factory.</value>
|
||||
IHttpResultFactory ResultFactory { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user