Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

14 linhas
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.