2014-07-01 21:57:18 -07:00
|
|
|
|
using ServiceStack.Web;
|
2013-03-23 19:45:00 -07:00
|
|
|
|
|
2013-12-07 08:52:38 -07:00
|
|
|
|
namespace MediaBrowser.Controller.Net
|
2013-03-23 19:45:00 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IHasResultFactory
|
|
|
|
|
/// Services that require a ResultFactory should implement this
|
|
|
|
|
/// </summary>
|
2013-12-07 08:52:38 -07:00
|
|
|
|
public interface IHasResultFactory : IRequiresRequest
|
2013-03-23 19:45:00 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the result factory.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The result factory.</value>
|
|
|
|
|
IHttpResultFactory ResultFactory { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|