Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

17 rindas
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.