* 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
9 lines
177 B
C#
9 lines
177 B
C#
namespace ErsatzTV.Core.Emby;
|
|
|
|
public class EmbyPathInfo
|
|
{
|
|
public int Id { get; set; }
|
|
public string Path { get; set; }
|
|
public string NetworkPath { get; set; }
|
|
}
|