Files
ersatztv/ErsatzTV.Application/Scheduling/Commands/ReplaceBlockItems.cs
T

13 lines
324 B
C#

using ErsatzTV.Core;
using ErsatzTV.Core.Domain.Scheduling;
namespace ErsatzTV.Application.Scheduling;
public record ReplaceBlockItems(
int BlockId,
string Name,
int Minutes,
BlockStopScheduling StopScheduling,
List<ReplaceBlockItem> Items)
: IRequest<Either<BaseError, List<BlockItemViewModel>>>;