lixiaojun
2022-08-17 d3024a7b50b35a8f24c1bfe0f13f4f86cc63a253
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.DataDockingApi
{
    /// <summary>
    /// app参数(可配制)
    /// </summary>
    public class AppParas
    {
        /// <summary>
        /// url
        /// </summary>
        public string url { get; set; }
 
        /// <summary>
        /// key
        /// </summary>
        public string key { get; set; }
 
        /// <summary>
        /// 是否调试
        /// </summary>
        public bool debug { get; set; }
    }
 
 
}