jellyfin/MediaBrowser.Model/MediaInfo/BlurayDiscInfo.cs

38 lines
1,020 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
2013-02-21 07:38:23 +01:00
namespace MediaBrowser.Model.MediaInfo
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Represents the result of BDInfo output
/// </summary>
2013-02-21 07:38:23 +01:00
public class BlurayDiscInfo
2013-02-21 02:33:05 +01:00
{
/// <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; }
2013-09-02 03:35:57 +02:00
public string PlaylistName { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the chapters.
/// </summary>
/// <value>The chapters.</value>
public List<double> Chapters { get; set; }
}
}