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