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

17 行
568B

  1. namespace Campaign_Tracker.Server.ExtensionData;
  2. /// <summary>
  3. /// Outcome of a pre-save legacy link validation (AC #3).
  4. /// On failure, <see cref="Error"/> contains a descriptive message identifying the invalid reference.
  5. /// </summary>
  6. public sealed record LegacyLinkValidationResult(bool IsValid, string? Error = null)
  7. {
  8. public static LegacyLinkValidationResult Success() => new(true);
  9. public static LegacyLinkValidationResult Failure(string error)
  10. {
  11. ArgumentException.ThrowIfNullOrWhiteSpace(error);
  12. return new(false, error);
  13. }
  14. }

Powered by TurnKey Linux.