tangxu
2023-04-21 473084031d410d95db66e81f4d1761f9a2d1b8e5
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
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.DataDockingMqtt
{
    /// <summary>
    /// app参数(可配制)
    /// </summary>
    public class AppParas
    { 
        /// <summary>
        /// 是否保存原始
        /// </summary>
        public bool Src { get; set; }
 
        /// <summary>
        /// 是否调试
        /// </summary>
        public bool Debug { get; set; } 
    } 
}