Files
jellyfin-jellyfin-1/MediaBrowser.Model/Dto/MediaVersionInfo.cs

31 lines
742 B
C#
Raw Normal View History

2014-03-19 00:59:45 -04:00
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
namespace MediaBrowser.Model.Dto
{
2014-03-19 13:44:55 -04:00
public class MediaVersionInfo
2014-03-19 00:59:45 -04:00
{
2014-03-20 23:31:40 -04:00
public string ItemId { get; set; }
2014-03-19 00:59:45 -04:00
public string Path { get; set; }
public LocationType LocationType { get; set; }
public string Name { get; set; }
public long? RunTimeTicks { get; set; }
public VideoType? VideoType { get; set; }
public IsoType? IsoType { get; set; }
public Video3DFormat? Video3DFormat { get; set; }
public List<MediaStream> MediaStreams { get; set; }
public List<ChapterInfoDto> Chapters { get; set; }
2014-03-20 23:31:40 -04:00
public bool IsPrimaryVersion { get; set; }
2014-03-19 00:59:45 -04:00
}
}