namespace Campaign_Tracker.Server.LegacyData.Models; /// /// Read-only domain projection of the legacy KitLabels table. /// Join keys: ID (INTEGER, NOT NULL), KitID (INTEGER → Kit.ID). /// public sealed record LegacyKitLabel( int Id, int KitId, string? InBoundImb, string? InBoundImbDigits, string? InBoundSerial, string? OutboundImb, string? OutboundImbDigits, string? OutboundSerial, double? SetNumber);