Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 lines
487B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>KitLabels</c> table.
  4. /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>KitID</c> (INTEGER → Kit.ID).
  5. /// </summary>
  6. public sealed record LegacyKitLabel(
  7. int Id,
  8. int KitId,
  9. string? InBoundImb,
  10. string? InBoundImbDigits,
  11. string? InBoundSerial,
  12. string? OutboundImb,
  13. string? OutboundImbDigits,
  14. string? OutboundSerial,
  15. double? SetNumber);

Powered by TurnKey Linux.