jellyfin/MediaBrowser.Controller/MediaInfo/BDInfoResult.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
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; }
}
}