ningshuxia
2022-11-18 b4093bc3cbe7e1c347bd9d366528a74b8a18f570
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
42
43
44
45
46
47
48
using IStation.Untity;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.DataDockingSocket
{
    /// <summary>
    /// app参数(可配制)
    /// </summary>
    public class AppParas
    {
        /// <summary>
        /// 指令发送间隔
        /// </summary>
        public int InstructionSendSpace { get; set; }
 
        /// <summary>
        /// 前缀
        /// </summary>
        public string Prefix { get; set; }
 
        /// <summary>
        /// 前缀
        /// </summary>
        public string ProductID { get; set; }
 
        /// <summary>
        /// 返回指令
        /// </summary>
        public string ReturnInstruction { get; set; }
 
        /// <summary>
        /// 是否保存原始
        /// </summary>
        public bool Src { get; set; }
 
        /// <summary>
        /// 是否调试
        /// </summary>
        public bool Debug { get; set; }
 
    }
   
}