jellyfin/MediaBrowser.Model/Entities/MediaInfo.cs
2014-05-08 16:26:20 -04:00

26 lines
623 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Model.Entities
{
public class MediaInfo
{
/// <summary>
/// Gets or sets the media streams.
/// </summary>
/// <value>The media streams.</value>
public List<MediaStream> MediaStreams { get; set; }
/// <summary>
/// Gets or sets the format.
/// </summary>
/// <value>The format.</value>
public string Format { get; set; }
public int? TotalBitrate { get; set; }
public MediaInfo()
{
MediaStreams = new List<MediaStream>();
}
}
}