namespace Campaign_Tracker.Server.LegacyData.Models; /// /// Read-only domain projection of the legacy Kit table. /// Join keys: ID (INTEGER, NOT NULL), Jcode (VARCHAR → Jurisdiction.JCode). /// 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);