diff options
Diffstat (limited to 'MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs')
| -rw-r--r-- | MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs b/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs deleted file mode 100644 index b38fec7d4..000000000 --- a/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs +++ /dev/null @@ -1,32 +0,0 @@ -using MediaBrowser.Model.Dlna; -using MediaBrowser.Model.Dto; -using System.Collections.Generic; - -namespace MediaBrowser.Model.MediaInfo -{ - public class PlaybackInfoResponse - { - /// <summary> - /// Gets or sets the media sources. - /// </summary> - /// <value>The media sources.</value> - public MediaSourceInfo[] MediaSources { get; set; } - - /// <summary> - /// Gets or sets the play session identifier. - /// </summary> - /// <value>The play session identifier.</value> - public string PlaySessionId { get; set; } - - /// <summary> - /// Gets or sets the error code. - /// </summary> - /// <value>The error code.</value> - public PlaybackErrorCode? ErrorCode { get; set; } - - public PlaybackInfoResponse() - { - MediaSources = new MediaSourceInfo[] { }; - } - } -} |
