Files
ersatztv/ErsatzTV.Core/Domain/Library/PlexLibrary.cs
T
Jason DoveandGitHub 0f795e4e2f add plex network metadata (#2085)
* initial plumbing

* scan for plex networks

* save network contents to db as tags

* eliminate network tag id churn

* add network and show_network to search index

* update last networks scan

* show networks on tv show page

* update changelog
2025-06-28 12:49:26 +00:00

9 lines
209 B
C#

namespace ErsatzTV.Core.Domain;
public class PlexLibrary : Library
{
public string Key { get; set; }
public bool ShouldSyncItems { get; set; }
public DateTime? LastNetworksScan { get; set; }
}