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

14 行
379B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>Jurisdiction</c> table.
  4. /// Join key: <c>JCode</c> (VARCHAR 10, NOT NULL).
  5. /// </summary>
  6. public sealed record LegacyJurisdiction(
  7. string JCode,
  8. string? Name,
  9. string? MailingAddress,
  10. string? CityStateZip,
  11. string? Imb,
  12. string? ImbDigits);

Powered by TurnKey Linux.