10 lines
250 B
C#
10 lines
250 B
C#
namespace SampleProject.Config
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static string MQTT_DOMAIN = "localhost";
|
|
public static int MQTT_PORT = 1883;
|
|
public static string PlaybackDomain = "http://localhost";
|
|
}
|
|
}
|