#nullable disable using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.MediaInfo; /// /// Represents the result of BDInfo output. /// public class BlurayDiscInfo { /// /// Gets or sets the media streams. /// /// The media streams. public MediaStream[] MediaStreams { get; set; } /// /// Gets or sets the run time ticks. /// /// The run time ticks. public long? RunTimeTicks { get; set; } /// /// Gets or sets the files. /// /// The files. public string[] Files { get; set; } /// /// Gets or sets the playlist name. /// /// The playlist name. public string PlaylistName { get; set; } /// /// Gets or sets the chapters. /// /// The chapters. public double[] Chapters { get; set; } }