Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 lines
414B

  1. namespace Campaign_Tracker.Server.ExtensionData;
  2. /// <summary>
  3. /// Validates that a <see cref="LegacyLinkReference"/> resolves to an existing legacy record
  4. /// before an extension record is persisted (AC #3).
  5. /// </summary>
  6. public interface ILegacyLinkValidator
  7. {
  8. Task<LegacyLinkValidationResult> ValidateAsync(
  9. LegacyLinkReference reference,
  10. CancellationToken cancellationToken = default);
  11. }

Powered by TurnKey Linux.