forked from yanw/App_win_iot_V2.0
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.
46 lines
2.1 KiB
46 lines
2.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOTContainer.Common
|
|
{
|
|
public struct ConfigKey
|
|
{
|
|
public static string registerCode = "registerCode";
|
|
public static string httpServer = "httpServer";
|
|
public static string httpPort = "httpPort";
|
|
public static string label = "label";
|
|
public static string resolution = "resolution";
|
|
public static string ip = "ip";
|
|
public static string mac = "mac";
|
|
public static string pwd = "pwd";
|
|
public static string mqttServer = "mqttServer";
|
|
public static string mqttPort = "mqttPort";
|
|
public static string downloadUrl = "downloadUrl";
|
|
public static string projectCode = "projectCode";
|
|
public static string projectName = "projectName";
|
|
public static string buildingName = "buildingName";
|
|
public static string floorName = "floorName";
|
|
public static string devCode = "devCode";
|
|
public static string devName = "devName";
|
|
public static string devType = "devType";
|
|
public static string devAttr = "devAttr";
|
|
public static string devGroupCodes = "devGroupCodes";
|
|
public static string noTouchingSeconds = "noTouchingSeconds";
|
|
public static string jumpTime = "jumpTime";
|
|
public static string labelType = "labelType";
|
|
public static string labelEffect = "labelEffect";
|
|
public static string labelLocation = "labelLocation";
|
|
public static string screenSaver = "screenSaver";
|
|
public static string screenSaverHash = "screenSaverHash";
|
|
public static string screenSaverTouch = "screenSaverTouch";
|
|
public static string screenSaverTouchHash = "screenSaverHash";
|
|
public static string containerVersion = "containerVersion";
|
|
public static string webVersion = "webVersion";
|
|
public static string xfyunIp = "xfyunIp";
|
|
public static string xfyunPort = "xfyunPort";
|
|
public static string baiduVoiceServer = "baiduVoiceServer";
|
|
}
|
|
}
|
|
|