You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
484 B
18 lines
484 B
using MediaBrowser.Model.Services;
|
|
|
|
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; }
|
|
}
|
|
}
|