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
354 B
13 lines
354 B
using System.Collections.Generic; |
|
|
|
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 List<PlexStreamResponse> Stream { get; set; } |
|
} |
|
}
|
|
|