Replacement for JDIS Importer
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 řádky
679 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace jdis_import
  6. {
  7. public class WorkOrderImport
  8. {
  9. public DateTime CreateDate { get; set; }
  10. public DateTime OpnDt { get; set; }
  11. public string Number { get; set; }
  12. public string Segment { get; set; }
  13. public string InspectionLevel { get; set; }
  14. public string TechnicianUserID { get; set; }
  15. public DateTime ScheduledStartDate { get; set; }
  16. public string InspectionInterval { get; set; }
  17. public string InspectionType { get; set; }
  18. public string CodeAndDescriptionOriginal { get; set; }
  19. }
  20. }