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.

30 lines
995 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
[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("Help")]
public string Help { get; set; }
}
}