* re-enable plex, temp force secure connections * add plex fanart * synchronize genre from plex * fix plex library sync * improve stream error handling * synchronize plex artwork * use switch instead of button * prioritize local connections for insecure plex sources * sign out of plex * better plex sign in/out * code cleanup * fix plex movie aspect ratio and scan type
14 lines
354 B
C#
14 lines
354 B
C#
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; }
|
|
}
|
|
}
|