25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
626B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>Contacts</c> table.
  4. /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>JURISCODE</c> (VARCHAR).
  5. /// </summary>
  6. public sealed record LegacyContact(
  7. int Id,
  8. string JurisCode,
  9. string? ContactName,
  10. string? Title,
  11. string? Email,
  12. string? Phone1,
  13. string? Phone2,
  14. string? MailingAddress,
  15. string? MailingAddress2,
  16. string? MailingAddress3,
  17. string? BusinessAddress,
  18. string? BusinessAddress2,
  19. string? BusinessAddress3,
  20. string? TownshipName,
  21. string? TownshipNum);

Powered by TurnKey Linux.