Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

21 righe
690 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace importer.ImportObjects
  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. }