* configure scheduled playout rebuild * implement scheduled playout rebuild * remove variable
11 lines
270 B
C#
11 lines
270 B
C#
using System;
|
|
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.Playouts.Commands
|
|
{
|
|
public record UpdatePlayout
|
|
(int PlayoutId, Option<TimeSpan> DailyRebuildTime) : IRequest<Either<BaseError, PlayoutNameViewModel>>;
|
|
}
|