Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

22 wiersze
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.