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.
21 lines
725 B
21 lines
725 B
using System.Collections.Generic; |
|
|
|
namespace ErsatzTV.Infrastructure.Plex.Models |
|
{ |
|
public class PlexMediaResponse |
|
{ |
|
public int Id { get; set; } |
|
public int Duration { get; set; } |
|
public int Bitrate { get; set; } |
|
public int Width { get; set; } |
|
public int Height { get; set; } |
|
public double AspectRatio { get; set; } |
|
public int AudioChannels { get; set; } |
|
public string AudioCodec { get; set; } |
|
public string VideoCodec { get; set; } |
|
public string VideoProfile { get; set; } |
|
public string Container { get; set; } |
|
public string VideoFrameRate { get; set; } |
|
public List<PlexPartResponse> Part { get; set; } |
|
} |
|
}
|
|
|