| 1234567891011121314151617181920212223242526272829303132333435363738 |
- namespace LAPS_XMLQC_Service.Models
- {
- public class Appsettings
- {
- public string Secret { get; set; }
- public string Resolution_high { get; set; }
- }
-
- public class lottraninfo
- {
- public string p_tranid { set; get; }
- public string p_userid { set; get; }
- public string p_option { set; get; }
- public string p_XmlName { set; get; }
- public string p_holdreason { set; get; }
- public string basexmlUpdate { set; get; }
- public string stageorder { set; get; }
- }
- public class FileDetails
- {
- public string FileName { get; set; }
- public string FilePath { get; set; }
- }
- public class filedownload
- {
- public int jobid { get; set; }
- public string path { get; set; }
- public string type { get; set; }
- public int tranid { get; set; }
- public int pdid { get; set; }
- public string jobtitle { get; set; }
- public string option { get; set; }
- }
- }
|