13 lines
283 B
C#
13 lines
283 B
C#
|
|
|||
|
namespace MediaBrowser.Controller.Net
|
|||
|
{
|
|||
|
public interface IHasSession
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the session context.
|
|||
|
/// </summary>
|
|||
|
/// <value>The session context.</value>
|
|||
|
ISessionContext SessionContext { get; set; }
|
|||
|
}
|
|||
|
}
|