9 lines
266 B
C#
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);
|
|
}
|