9 lines
245 B
C#
9 lines
245 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Application.Playouts.Commands
|
|
{
|
|
public record BuildPlayout(int PlayoutId, bool Rebuild = false) : MediatR.IRequest<Either<BaseError, Unit>>,
|
|
IBackgroundServiceRequest;
|
|
}
|