appsettingsModel.cs 1016 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. namespace LAPS_XMLQC_Service.Models
  2. {
  3. public class Appsettings
  4. {
  5. public string Secret { get; set; }
  6. public string Resolution_high { get; set; }
  7. }
  8. public class lottraninfo
  9. {
  10. public string p_tranid { set; get; }
  11. public string p_userid { set; get; }
  12. public string p_option { set; get; }
  13. public string p_XmlName { set; get; }
  14. public string p_holdreason { set; get; }
  15. public string basexmlUpdate { set; get; }
  16. public string stageorder { set; get; }
  17. }
  18. public class FileDetails
  19. {
  20. public string FileName { get; set; }
  21. public string FilePath { get; set; }
  22. }
  23. public class filedownload
  24. {
  25. public int jobid { get; set; }
  26. public string path { get; set; }
  27. public string type { get; set; }
  28. public int tranid { get; set; }
  29. public int pdid { get; set; }
  30. public string jobtitle { get; set; }
  31. public string option { get; set; }
  32. }
  33. }