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.
15 lines
401 B
15 lines
401 B
namespace ErsatzTV.Infrastructure.Plex.Models; |
|
|
|
public class PlexMediaContainerHubContent<T> |
|
{ |
|
public List<T> Hub { get; set; } = []; |
|
} |
|
|
|
public class PlexHubResponse |
|
{ |
|
public string HubIdentifier { get; set; } |
|
public string HubKey { get; set; } |
|
public string Title { get; set; } |
|
public string Type { get; set; } |
|
public List<PlexMetadataResponse> Metadata { get; set; } = []; |
|
}
|
|
|