* 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
9 lines
209 B
C#
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; }
|
|
}
|