using MediaBrowser.Model.Entities;
using System.Collections.Generic;
namespace MediaBrowser.Model.MediaInfo
{
///
/// Represents the result of BDInfo output
///
public class BlurayDiscInfo
{
///
/// Gets or sets the media streams.
///
/// The media streams.
public List 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 List Files { get; set; }
public string PlaylistName { get; set; }
///
/// Gets or sets the chapters.
///
/// The chapters.
public List Chapters { get; set; }
}
}