namespace StellaOps.Scheduler.WebService.GraphJobs; public readonly record struct GraphJobUpdateResult(bool Updated, TJob Job) where TJob : class { public static GraphJobUpdateResult UpdatedResult(TJob job) => new(true, job); public static GraphJobUpdateResult NotUpdated(TJob job) => new(false, job); }