using System.Collections.Generic; using ErsatzTV.Core; using LanguageExt; namespace ErsatzTV.Application.Jellyfin.Commands { public record UpdateJellyfinLibraryPreferences (List Preferences) : MediatR.IRequest>; public record JellyfinLibraryPreference(int Id, bool ShouldSyncItems); }