You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1020 B
38 lines
1020 B
using MediaBrowser.Model.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
|
{
|
|
/// <summary>
|
|
/// Represents the result of BDInfo output
|
|
/// </summary>
|
|
public class BlurayDiscInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the media streams.
|
|
/// </summary>
|
|
/// <value>The media streams.</value>
|
|
public List<MediaStream> MediaStreams { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the run time ticks.
|
|
/// </summary>
|
|
/// <value>The run time ticks.</value>
|
|
public long? RunTimeTicks { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the files.
|
|
/// </summary>
|
|
/// <value>The files.</value>
|
|
public List<string> Files { get; set; }
|
|
|
|
public string PlaylistName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the chapters.
|
|
/// </summary>
|
|
/// <value>The chapters.</value>
|
|
public List<double> Chapters { get; set; }
|
|
}
|
|
}
|