using FluentValidation; namespace MfGames.Nitride.Temporal.Schedules.Validators; public class ApplySchedulesValidator : AbstractValidator { public ApplySchedulesValidator() { this.RuleFor(x => x.Schedules) .NotEmpty(); this.RuleFor(x => x.Timekeeper) .NotNull(); } }