mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-28 11:28:27 +01:00
Added VideoInfo to DTOBaseItem
This commit is contained in:
parent
fbf8cc833c
commit
f2de85b5d9
18
MediaBrowser.Model/DTO/VideoInfo.cs
Normal file
18
MediaBrowser.Model/DTO/VideoInfo.cs
Normal file
@@ -0,0 +1,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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user