aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/IHasResultFactory.cs
blob: d9da0c7e4eff4bedc4069ce78179365d354d4374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using ServiceStack.ServiceHost;

namespace MediaBrowser.Common.Net
{
    /// <summary>
    /// Interface IHasResultFactory
    /// Services that require a ResultFactory should implement this
    /// </summary>
    public interface IHasResultFactory : IRequiresRequestContext
    {
        /// <summary>
        /// Gets or sets the result factory.
        /// </summary>
        /// <value>The result factory.</value>
        IHttpResultFactory ResultFactory { get; set; }
    }
}