* Allow Other Videos Library Type on Plex to be sync * Migrating database: Creating PlexOtherVideo table * Using Plex Media path to create tags for OtherVideos * missed these in the merge * Getting PlexLibrary for Tag set on OtherVideo * fix migrations * set tag metadata on plex other videos * update changelog --------- Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
14 lines
409 B
C#
14 lines
409 B
C#
namespace ErsatzTV.Infrastructure.Plex.Models;
|
|
|
|
public class PlexLibraryResponse
|
|
{
|
|
public string Key { get; set; }
|
|
public string Title { get; set; }
|
|
public string Type { get; set; }
|
|
public string Agent { get; set; }
|
|
public int Hidden { get; set; }
|
|
public string Uuid { get; set; }
|
|
public string Language { get; set; }
|
|
public List<PlexLocationResponse> Location { get; set; }
|
|
}
|