* 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
10 lines
278 B
C#
10 lines
278 B
C#
namespace ErsatzTV.Infrastructure.Emby.Models;
|
|
|
|
public class EmbyLibraryResponse
|
|
{
|
|
public string Name { get; set; }
|
|
public string CollectionType { get; set; }
|
|
public string ItemId { get; set; }
|
|
public EmbyLibraryOptionsResponse LibraryOptions { get; set; }
|
|
}
|