jellyfin/MediaBrowser.Model/DTO/VideoInfo.cs

32 lines
746 B
C#
Raw Normal View History

2012-08-22 12:56:44 +00:00
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
using ProtoBuf;
2012-08-22 12:56:44 +00:00
namespace MediaBrowser.Model.DTO
{
[ProtoContract]
2012-08-22 12:56:44 +00:00
public class VideoInfo
{
[ProtoMember(1)]
2012-08-22 12:56:44 +00:00
public string Codec { get; set; }
[ProtoMember(2)]
2012-08-22 12:56:44 +00:00
public int Height { get; set; }
[ProtoMember(3)]
2012-08-22 12:56:44 +00:00
public int Width { get; set; }
[ProtoMember(4)]
2012-08-22 12:56:44 +00:00
public string ScanType { get; set; }
[ProtoMember(5)]
2012-08-22 12:56:44 +00:00
public VideoType VideoType { get; set; }
[ProtoMember(6)]
2012-08-22 12:56:44 +00:00
public IEnumerable<SubtitleStream> Subtitles { get; set; }
[ProtoMember(7)]
2012-08-22 12:56:44 +00:00
public IEnumerable<AudioStream> AudioStreams { get; set; }
}
}