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.

22 linhas
594B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>Kit</c> table.
  4. /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>Jcode</c> (VARCHAR → Jurisdiction.JCode).
  5. /// </summary>
  6. public sealed record LegacyKit(
  7. int Id,
  8. string JCode,
  9. string? JobNumber,
  10. string? JobType,
  11. string? Status,
  12. string? Filename,
  13. bool Cass,
  14. bool InkJetJob,
  15. DateTime? CreatedOn,
  16. DateTime? ExportedToSnailWorks,
  17. DateTime? LabelsPrinted,
  18. int? OfficeCopiesAmount,
  19. string? InboundStid,
  20. string? OutboundStid);

Powered by TurnKey Linux.