blob: 5cff413f297a349b08101d86265956bfd261a6b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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; }
}
}
|