You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
493 B
17 lines
493 B
9 months ago
|
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace EGFramework.Examples.Gateway{
|
||
|
public class DataTcpGatewaySetting{
|
||
|
public List<DataTcpGatewayDevice> DataTcpGatewayDevices = new List<DataTcpGatewayDevice>();
|
||
|
|
||
|
}
|
||
|
public class DataTcpGatewayDevice{
|
||
|
public string Host { set; get; }
|
||
|
public int Port { set; get; }
|
||
|
public string MqttHost { set; get; }
|
||
|
public string RequestTheme { set; get; }
|
||
|
public string ResponseTheme { set; get; }
|
||
|
}
|
||
|
}
|