您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
455B

  1. namespace Campaign_Tracker.Server.LegacyData.Schema;
  2. /// <summary>
  3. /// Service contract for executing a legacy schema compatibility check
  4. /// (Story 1.7). Compares the loaded baseline against the live schema returned
  5. /// by <see cref="ILegacySchemaInspector"/> and produces a structured result.
  6. /// </summary>
  7. public interface ILegacySchemaCompatibilityCheck
  8. {
  9. Task<LegacySchemaCheckResult> RunAsync(CancellationToken cancellationToken = default);
  10. }

Powered by TurnKey Linux.