Files

15 lines
456 B
C#

namespace Simulator.Config
{
public static class Constants
{
public static string API_DOMAIN = "http://localhost:8888";
public static string MQTT_DOMAIN = "localhost";
public static int MQTT_PORT = 1883;
public static string MQTT_DATA_KEY = "data";
/// <summary>
/// MQTT MessagePack 인코딩 사용 여부
/// </summary>
public static bool MQTT_MESSAGEPACK_ENABLED = false;
}
}