* properly scope jellyfin disconnect * add emby entities * add emby media source page * add emby media source editor * sync emby libraries * enable emby library sync toggle * add emby path replacements editor * add emby movie synchronization * fix emby artwork * sync emby television * code cleanup * add jellyfin/emby address placeholder * tweak jellyfin/emby address form
12 lines
341 B
C#
12 lines
341 B
C#
using System.Collections.Generic;
|
|
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Application.Emby.Commands
|
|
{
|
|
public record UpdateEmbyLibraryPreferences
|
|
(List<EmbyLibraryPreference> Preferences) : MediatR.IRequest<Either<BaseError, Unit>>;
|
|
|
|
public record EmbyLibraryPreference(int Id, bool ShouldSyncItems);
|
|
}
|