Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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