mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
22 lines
761 B
22 lines
761 B
using System; |
|
using System.Collections.Generic; |
|
using ErsatzTV.Core.Interfaces.FFmpeg; |
|
|
|
namespace ErsatzTV.Core.Domain |
|
{ |
|
public class MediaVersion : IDisplaySize |
|
{ |
|
public int Id { get; set; } |
|
public string Name { get; set; } |
|
public List<MediaFile> MediaFiles { get; set; } |
|
public List<MediaStream> Streams { get; set; } |
|
public TimeSpan Duration { get; set; } |
|
public string SampleAspectRatio { get; set; } |
|
public string DisplayAspectRatio { get; set; } |
|
public VideoScanKind VideoScanKind { get; set; } |
|
public DateTime DateAdded { get; set; } |
|
public DateTime DateUpdated { get; set; } |
|
public int Width { get; set; } |
|
public int Height { get; set; } |
|
} |
|
}
|
|
|