AppSettingConfig.cs 502 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AwInitilizer.Model
  7. {
  8. class AppSettingConfig
  9. {
  10. public string FirmwareRoot { get; set; }
  11. public string Language { get; set; }
  12. public string MES { get; set; }
  13. public string MechineCode { get; set; }
  14. public bool IsDisableAuthRequired { get; set; }
  15. public string JohnSenLedComPort { get; set; }
  16. }
  17. }