| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace FantasySolution.FantasyCorrector
- {
- public class GlobalVariable
- {
- public GlobalVariable()
- {
- }
- public static readonly GlobalVariable Instance = new GlobalVariable();
- /// <summary>
- /// ¸üгÌÐòÃû³Æ11
- /// </summary>
- public string ApplicationStart = "CarMeterSystem.exe";
- public string ReleaseFileName = "ReleaseList.xml";
- public string ReleaseURL = "http://10.129.1.210/pikaServices/ZNZD";
- public string LocalPath = "FantasyUpdate";
- public string ApplicationUpdater = "FantasyCorrector.exe";
- }
- }
|