* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
6 lines
206 B
C#
6 lines
206 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Playouts;
|
|
|
|
public record BuildPlayout(int PlayoutId, bool Rebuild = false) : MediatR.IRequest<Either<BaseError, Unit>>,
|
|
IBackgroundServiceRequest; |