|
- namespace Campaign_Tracker.Server.LegacyData.Models;
-
- /// <summary>
- /// Read-only domain projection of the legacy <c>Kit</c> table.
- /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>Jcode</c> (VARCHAR → Jurisdiction.JCode).
- /// </summary>
- public sealed record LegacyKit(
- int Id,
- string JCode,
- string? JobNumber,
- string? JobType,
- string? Status,
- string? Filename,
- bool Cass,
- bool InkJetJob,
- DateTime? CreatedOn,
- DateTime? ExportedToSnailWorks,
- DateTime? LabelsPrinted,
- int? OfficeCopiesAmount,
- string? InboundStid,
- string? OutboundStid);
|