No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
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.