Files
ersatztv/ErsatzTV.Core/Interfaces/Scheduling/ISequentialScheduleValidator.cs
T
Jason DoveandGitHub e06ee54070 rename yaml playout to sequential schedule (#2335)
* clarify some schedule and playout terms

* more renaming
2025-08-23 14:27:32 +00:00

9 lines
266 B
C#

namespace ErsatzTV.Core.Interfaces.Scheduling;
public interface ISequentialScheduleValidator
{
Task<bool> ValidateSchedule(string yaml, bool isImport);
string ToJson(string yaml);
Task<IList<string>> GetValidationMessages(string yaml, bool isImport);
}