25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
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.