aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IHasSession.cs
blob: e762c1e844bba8e565c8aae4c69ad6b64c22eb90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace MediaBrowser.Controller.Net
{
    public interface IHasSession
    {
        /// <summary>
        /// Gets or sets the session context.
        /// </summary>
        /// <value>The session context.</value>
        ISessionContext SessionContext { get; set; }
    }
}