namespace Campaign_Tracker.Server.LegacyData.Schema; /// /// Service contract for executing a legacy schema compatibility check /// (Story 1.7). Compares the loaded baseline against the live schema returned /// by and produces a structured result. /// public interface ILegacySchemaCompatibilityCheck { Task RunAsync(CancellationToken cancellationToken = default); }