* start adding jellyfin path info; fix some scanning bugs * sync jellyfin libraries before scanning to ensure latest path infos * code cleanup * support emby path infos * fix periodic scanning of emby and jellyfin libraries * bug fixes
11 lines
253 B
C#
11 lines
253 B
C#
using ErsatzTV.Core.Jellyfin;
|
|
|
|
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class JellyfinLibrary : Library
|
|
{
|
|
public string ItemId { get; set; }
|
|
public bool ShouldSyncItems { get; set; }
|
|
public List<JellyfinPathInfo> PathInfos { get; set; }
|
|
}
|