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