* add template playout kind * add template scheduler count * implement pad to next * only allow resetting template playouts * update changelog
10 lines
256 B
C#
10 lines
256 B
C#
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Scheduling;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface ITemplatePlayoutBuilder
|
|
{
|
|
Task<Playout> Build(Playout playout, PlayoutBuildMode mode, CancellationToken cancellationToken);
|
|
}
|