10 lines
283 B
C#
10 lines
283 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Playouts;
|
|
|
|
public record CreatePlayout(
|
|
int ChannelId,
|
|
int ProgramScheduleId,
|
|
ProgramSchedulePlayoutType ProgramSchedulePlayoutType) : IRequest<Either<BaseError, CreatePlayoutResponse>>;
|