* add deco graphics elements, selector and tests * add migrations * edit deco graphics elements from ui * update changelog
12 lines
267 B
C#
12 lines
267 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.FFmpeg;
|
|
|
|
public interface IGraphicsElementSelector
|
|
{
|
|
List<PlayoutItemGraphicsElement> SelectGraphicsElements(
|
|
Channel channel,
|
|
PlayoutItem playoutItem,
|
|
DateTimeOffset now);
|
|
}
|