Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- namespace Campaign_Tracker.Server.ExtensionData;
-
- /// <summary>
- /// Validates that a <see cref="LegacyLinkReference"/> resolves to an existing legacy record
- /// before an extension record is persisted (AC #3).
- /// </summary>
- public interface ILegacyLinkValidator
- {
- Task<LegacyLinkValidationResult> ValidateAsync(
- LegacyLinkReference reference,
- CancellationToken cancellationToken = default);
- }
|