aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaInfo/BDInfoResult.cs
blob: 08d1ce8a0b0077def6385d1fb5e58687b20bebb1 (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
using MediaBrowser.Model.Entities;
using ProtoBuf;
using System.Collections.Generic;

namespace MediaBrowser.Controller.MediaInfo
{
    /// <summary>
    /// Represents the result of BDInfo output
    /// </summary>
    [ProtoContract]
    public class BDInfoResult
    {
        /// <summary>
        /// Gets or sets the media streams.
        /// </summary>
        /// <value>The media streams.</value>
        [ProtoMember(1)]
        public List<MediaStream> MediaStreams { get; set; }

        /// <summary>
        /// Gets or sets the run time ticks.
        /// </summary>
        /// <value>The run time ticks.</value>
        [ProtoMember(2)]
        public long? RunTimeTicks { get; set; }

        /// <summary>
        /// Gets or sets the files.
        /// </summary>
        /// <value>The files.</value>
        [ProtoMember(3)]
        public List<string> Files { get; set; }

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