Files
ersatztv/ErsatzTV.Core/Interfaces/Scheduling/IPlayoutTimeShifter.cs
T
Jason DoveandGitHub a8b658a5ea add "on demand" channel progress mode (#1790)
* update dependencies

* add channel progress mode

* implement on demand channel progress

* update changelog
2024-07-16 12:21:52 -05:00

9 lines
194 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Interfaces.Scheduling;
public interface IPlayoutTimeShifter
{
public void TimeShift(Playout playout, DateTimeOffset now, bool force);
}