* 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
241 B
C#
11 lines
241 B
C#
using ErsatzTV.Core.Emby;
|
|
|
|
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class EmbyLibrary : Library
|
|
{
|
|
public string ItemId { get; set; }
|
|
public bool ShouldSyncItems { get; set; }
|
|
public List<EmbyPathInfo> PathInfos { get; set; }
|
|
}
|