blob: ae969618f07d8a5359ba5fe119a9d4bf5e13fd79 [file] [log] [blame]
namespace BaSys40.Models.Connectivity
{
public static class EndpointType
{
public const string HTTP = "http";
public const string TCP = "tcp";
public const string MQTT = "mqtt";
public const string OPC_UA = "opc-ua";
public const string COAP = "coap";
public const string WEBSOCKET = "websocket";
}
}