* upgrade dependencies * allow blocks with same name in different groups * code cleanup
7 lines
202 B
C#
7 lines
202 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Playouts;
|
|
|
|
public record UpdatePlayout(int PlayoutId, Option<TimeSpan> DailyRebuildTime)
|
|
: IRequest<Either<BaseError, PlayoutNameViewModel>>;
|