選択できるのは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.