18 lines
513 B
C#
18 lines
513 B
C#
using UnityEngine;
|
|
|
|
namespace SHINT.MQTT
|
|
{
|
|
[CreateAssetMenu(fileName = "BrokerSetting", menuName = "BrokerSetting")]
|
|
public class BrokerSetting : ScriptableObject
|
|
{
|
|
public string brokerAddress;
|
|
public int brokerPort;
|
|
public bool isEncrypted = false;
|
|
public int connectionDelay = 500;
|
|
public int timeoutOnConnection = 3000;
|
|
public bool autoConnect = false;
|
|
public string mqttUserName = null;
|
|
public string mqttPassword = null;
|
|
}
|
|
}
|