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.
13 lines
395 B
13 lines
395 B
namespace ErsatzTV.Infrastructure.Plex.Models; |
|
|
|
public class PlexPartResponse |
|
{ |
|
public int Id { get; set; } |
|
public string Key { get; set; } |
|
public int Duration { get; set; } |
|
public string File { get; set; } |
|
public long Size { get; set; } |
|
public string Container { get; set; } |
|
public string VideoProfile { get; set; } |
|
public string AudioProfile { get; set; } |
|
}
|
|
|