AppSettings.cs 874 B

1234567891011121314151617181920212223
  1.  namespace LogoForceTestApp.Modules.MainModule.Models
  2. {
  3. public class AppSettings
  4. {
  5. public string ScanIp { get; set; }
  6. public int ScanPort { get; set; }
  7. public string MachineName { get; set; }
  8. public bool TraceDisable { get; set; }
  9. public bool UnUseUpload { get; set; }
  10. public string CSVPath { get; set; }
  11. public string ImageSavePath { get; set; }
  12. public string AimName { get; set; }
  13. public string AIM_UNIQUE { get; set; }
  14. public string INSPECTION_PROGRAM_NAME { get; set; }
  15. public string Project { get; set; }
  16. public string Process { get; set; }
  17. public string Builds { get; set; }
  18. public string Part { get; set; }
  19. public string OeeUrl { get; set; }
  20. public string PLCIp { get; set; }
  21. public int PLCPort { get; set; }
  22. }
  23. }