aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
diff options
context:
space:
mode:
authorAndrew Rabert <ar@nullsum.net>2018-12-27 18:27:57 -0500
committerAndrew Rabert <ar@nullsum.net>2018-12-27 18:27:57 -0500
commita86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 (patch)
treea74f6ea4a8abfa1664a605d31d48bc38245ccf58 /MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
parent9bac3ac616b01f67db98381feb09d34ebe821f9a (diff)
Add GPL modules
Diffstat (limited to 'MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs')
-rw-r--r--MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs b/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
new file mode 100644
index 000000000..b38fec7d4
--- /dev/null
+++ b/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
@@ -0,0 +1,32 @@
+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[] { };
+ }
+ }
+}