diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-29 17:00:27 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-29 17:00:27 -0400 |
| commit | 982a30394018a9262aae0fafc56c736635ba27ed (patch) | |
| tree | 41e942f3df0b6cbae9a677bb3edbb4d43af40e9a /MediaBrowser.Controller/Session/SessionInfo.cs | |
| parent | 528292e496ef1cb6e226937f09774e57996d03db (diff) | |
added IsMuted to playback progress
Diffstat (limited to 'MediaBrowser.Controller/Session/SessionInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index 177573de6..6c0f1a085 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -87,9 +87,15 @@ namespace MediaBrowser.Controller.Session /// Gets or sets a value indicating whether this instance is paused. /// </summary> /// <value><c>true</c> if this instance is paused; otherwise, <c>false</c>.</value> - public bool? IsPaused { get; set; } + public bool IsPaused { get; set; } /// <summary> + /// Gets or sets a value indicating whether this instance is muted. + /// </summary> + /// <value><c>true</c> if this instance is muted; otherwise, <c>false</c>.</value> + public bool IsMuted { get; set; } + + /// <summary> /// Gets or sets the device id. /// </summary> /// <value>The device id.</value> |
