Files
ersatztv/ErsatzTV.Application/MediaSources/Commands/SynchronizePlexLibraries.cs
T
2021-02-08 21:13:53 -06:00

8 lines
212 B
C#

using ErsatzTV.Core;
using LanguageExt;
namespace ErsatzTV.Application.MediaSources.Commands
{
public record SynchronizePlexLibraries(int PlexMediaSourceId) : MediatR.IRequest<Either<BaseError, Unit>>;
}