diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2023-10-27 09:47:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-27 09:47:43 +0200 |
| commit | 0973f1e0baf62f169e7d5491ff17778748405e38 (patch) | |
| tree | 2a7486b879210ec71ad0176b52456bbe3b514376 /MediaBrowser.Controller/Session/SessionInfo.cs | |
| parent | db4605609c9c3d63536b48272e0c776e8ff7d41d (diff) | |
| parent | 6c5a4a93ccdb7c6ca8b26c36505d0954a7c79300 (diff) | |
Merge pull request #10357 from herby2212/kill-inactive-streams-v2
Add auto close of an inactive session after X minutes
Diffstat (limited to 'MediaBrowser.Controller/Session/SessionInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index 25bf23d61..172d79a59 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -110,6 +110,12 @@ namespace MediaBrowser.Controller.Session public DateTime LastPlaybackCheckIn { get; set; } /// <summary> + /// Gets or sets the last paused date. + /// </summary> + /// <value>The last paused date.</value> + public DateTime? LastPausedDate { get; set; } + + /// <summary> /// Gets or sets the name of the device. /// </summary> /// <value>The name of the device.</value> |
