GlobalVariable.cs 625 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace FantasySolution.FantasyCorrector
  5. {
  6. public class GlobalVariable
  7. {
  8. public GlobalVariable()
  9. {
  10. }
  11. public static readonly GlobalVariable Instance = new GlobalVariable();
  12. /// <summary>
  13. /// ¸üгÌÐòÃû³Æ11
  14. /// </summary>
  15. public string ApplicationStart = "CarMeterSystem.exe";
  16. public string ReleaseFileName = "ReleaseList.xml";
  17. public string ReleaseURL = "http://10.129.1.210/pikaServices/ZNZD";
  18. public string LocalPath = "FantasyUpdate";
  19. public string ApplicationUpdater = "FantasyCorrector.exe";
  20. }
  21. }