using ErsatzTV.Application.Troubleshooting.Queries; namespace ErsatzTV.Controllers.Api.Requests; public record ValidateSequentialScheduleRequest(string Yaml, bool IsImport) { public ValidateSequentialSchedule ToQuery() => new(Yaml, IsImport); }