|
- namespace Campaign_Tracker.Server.LegacyData.Models;
-
- /// <summary>
- /// Read-only domain projection of the legacy <c>Jurisdiction</c> table.
- /// Join key: <c>JCode</c> (VARCHAR 10, NOT NULL).
- /// </summary>
- public sealed record LegacyJurisdiction(
- string JCode,
- string? Name,
- string? MailingAddress,
- string? CityStateZip,
- string? Imb,
- string? ImbDigits);
|