11 lines
280 B
C#
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;
|
|
}
|