Files
ersatztv/ErsatzTV.Application/Plex/Commands/UpdatePlexLibraryPreferences.cs
T
Jason DoveandGitHub 087901d177 adjust block unique constraint (#1634)
* upgrade dependencies

* allow blocks with same name in different groups

* code cleanup
2024-03-05 10:39:06 -06:00

8 lines
252 B
C#

using ErsatzTV.Core;
namespace ErsatzTV.Application.Plex;
public record UpdatePlexLibraryPreferences(List<PlexLibraryPreference> Preferences) : IRequest<Either<BaseError, Unit>>;
public record PlexLibraryPreference(int Id, bool ShouldSyncItems);