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

11 lines
280 B
C#

using ErsatzTV.Core;
using ErsatzTV.Core.Plex;
using LanguageExt;
using MediatR;
namespace ErsatzTV.Application.MediaSources.Commands
{
public record TryCompletePlexPinFlow(PlexAuthPin AuthPin) : IRequest<Either<BaseError, bool>>,
IPlexBackgroundServiceRequest;
}