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

14 lines
362 B
C#

using ErsatzTV.Core;
using ErsatzTV.Core.Domain;
using LanguageExt;
using MediatR;
namespace ErsatzTV.Application.Playouts.Commands
{
public record UpdatePlayout(
int PlayoutId,
int ChannelId,
int ProgramScheduleId,
ProgramSchedulePlayoutType ProgramSchedulePlayoutType) : IRequest<Either<BaseError, PlayoutViewModel>>;
}