You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
518 B
19 lines
518 B
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Model.DTO
|
|
{
|
|
public class VideoInfo
|
|
{
|
|
public string Codec { get; set; }
|
|
public int Height { get; set; }
|
|
public int Width { get; set; }
|
|
public string ScanType { get; set; }
|
|
|
|
public VideoType VideoType { get; set; }
|
|
|
|
public IEnumerable<SubtitleStream> Subtitles { get; set; }
|
|
public IEnumerable<AudioStream> AudioStreams { get; set; }
|
|
}
|
|
}
|