Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12 rindas
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.