using System; using System.Collections.Generic; using MediaBrowser.Model.Dlna; using MediaBrowser.Model.Dto; namespace MediaBrowser.Model.MediaInfo { /// /// Class PlaybackInfoResponse. /// public class PlaybackInfoResponse { /// /// Initializes a new instance of the class. /// public PlaybackInfoResponse() { MediaSources = Array.Empty(); } /// /// Gets or sets the media sources. /// /// The media sources. public IReadOnlyList MediaSources { get; set; } /// /// Gets or sets the play session identifier. /// /// The play session identifier. public string? PlaySessionId { get; set; } /// /// Gets or sets the error code. /// /// The error code. public PlaybackErrorCode? ErrorCode { get; set; } } }