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.

16 lines
493 B

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; }
}
}