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