lixiaojun
2024-09-09 c0f3c3f170846197d8d3f74ac123e0ac93a6dd67
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
namespace IStation.Server
{
    /// <summary>
    /// 配置文件辅助类
    /// </summary>
    internal class ConfigHelper
    {
 
        /// <summary>
        /// 前缀
        /// </summary>
        public const string Prefix = "AT+Dat";
 
        /// <summary>
        /// 服务端口
        /// </summary>
        public static int ServerPort
        {
            get
            {
                return AppParasHelper.Get().ServerPort;
            }
        }
 
        /// <summary>
        /// 传输Url
        /// </summary>
        public static string TransferUrl
        {
            get
            {
                return AppParasHelper.Get().TransferUrl;
            }
        }
 
 
 
 
 
    }
}