25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

22 satır
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.