aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaInfo/BlurayDiscInfo.cs
blob: d546ffccdc8664c7e32dc65de35ea7ac82ba72b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#nullable disable

using MediaBrowser.Model.Entities;

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 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 string[] Files { get; set; }

    /// <summary>
    /// Gets or sets the playlist name.
    /// </summary>
    /// <value>The playlist name.</value>
    public string PlaylistName { get; set; }

    /// <summary>
    /// Gets or sets the chapters.
    /// </summary>
    /// <value>The chapters.</value>
    public double[] Chapters { get; set; }
}