diff options
Diffstat (limited to 'MediaBrowser.Model/Session/SessionInfoDto.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/SessionInfoDto.cs | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs index 40723eff8..98df3efe5 100644 --- a/MediaBrowser.Model/Session/SessionInfoDto.cs +++ b/MediaBrowser.Model/Session/SessionInfoDto.cs @@ -1,9 +1,9 @@ using MediaBrowser.Model.Entities; +using MediaBrowser.Model.Extensions; using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; -using MediaBrowser.Model.Extensions; namespace MediaBrowser.Model.Session { @@ -11,22 +11,10 @@ namespace MediaBrowser.Model.Session public class SessionInfoDto : IHasPropertyChangedEvent { /// <summary> - /// Gets or sets a value indicating whether this instance can seek. - /// </summary> - /// <value><c>true</c> if this instance can seek; otherwise, <c>false</c>.</value> - public bool CanSeek { get; set; } - - /// <summary> /// Gets or sets the supported commands. /// </summary> /// <value>The supported commands.</value> public List<string> SupportedCommands { get; set; } - - /// <summary> - /// Gets or sets the remote end point. - /// </summary> - /// <value>The remote end point.</value> - public string RemoteEndPoint { get; set; } /// <summary> /// Gets or sets the queueable media types. @@ -99,18 +87,6 @@ namespace MediaBrowser.Model.Session /// </summary> /// <value>The name of the device.</value> public string DeviceName { get; set; } - - /// <summary> - /// 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; } - - /// <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 now playing item. @@ -119,12 +95,6 @@ namespace MediaBrowser.Model.Session public BaseItemInfo NowPlayingItem { get; set; } /// <summary> - /// Gets or sets the now playing position ticks. - /// </summary> - /// <value>The now playing position ticks.</value> - public long? NowPlayingPositionTicks { get; set; } - - /// <summary> /// Gets or sets the device id. /// </summary> /// <value>The device id.</value> |
