diff options
Diffstat (limited to 'MediaBrowser.Api/Playback/StreamState.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/StreamState.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/StreamState.cs b/MediaBrowser.Api/Playback/StreamState.cs index be1ad85eb..f705b5e33 100644 --- a/MediaBrowser.Api/Playback/StreamState.cs +++ b/MediaBrowser.Api/Playback/StreamState.cs @@ -1,4 +1,5 @@ -using MediaBrowser.Model.Entities; +using System.Threading; +using MediaBrowser.Model.Entities; using MediaBrowser.Model.IO; using System.Collections.Generic; using System.IO; @@ -47,5 +48,9 @@ namespace MediaBrowser.Api.Playback public List<string> PlayableStreamFileNames { get; set; } public bool HasMediaStreams { get; set; } + + public bool SendInputOverStandardInput { get; set; } + + public CancellationTokenSource StandardInputCancellationTokenSource { get; set; } } } |
