mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
19 lines
504 B
C#
19 lines
504 B
C#
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; }
|
|
}
|
|
}
|