25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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.