You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
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.