* update dependencies * add channel progress mode * implement on demand channel progress * update changelog
9 lines
194 B
C#
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);
|
|
}
|