You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB
C#

5 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Txgy.RBS.Framework.Models
{
//recv配置波形数据存储目录,由基础路径+工程名称+"wavesdata"拼接
public class RecvMqttModel
{
public string savepath { get; set; }
[JsonProperty("log_level")]
public string log_level { get; set; }
[JsonProperty("send2server")] //recv配置Send2Redis
public string send2server { get; set; }
5 months ago
[JsonProperty("MQTT.Server")] //recv配置MqttServer
public string Server { get; set; }
[JsonProperty("MQTT.Stations")]
public string Stations { get; set; }
[JsonProperty("MQTT.Send81")]
public string Send81 { get; set; }
[JsonProperty("dirstruct")]
public string dirstruct { get; set; }
[JsonProperty("MQTT.Network")]
public string Network { get; set; }
5 months ago
[JsonProperty("Help")]
public string Help { get; set; }
}
}