// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.MediaInfo; using global::System; using global::System.Collections.Generic; using MediaBrowser.Model.Dlna; using MediaBrowser.Model.Dto; /// /// 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; } }