* clean up block playout preview logic * fix some bugs with playout templates editor * fix mysql migration
10 lines
253 B
C#
10 lines
253 B
C#
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Scheduling;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface IBlockPlayoutBuilder
|
|
{
|
|
Task<Playout> Build(Playout playout, PlayoutBuildMode mode, CancellationToken cancellationToken);
|
|
}
|