唐山轨道机控制端TCP服务
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.

13 lines
488 B

namespace Emergency_platform{
public class DataServerUrl{
//Default is http://192.168.10.104:8080
public string ServerAddress { set; get; } = "";
public const string FrpAddress = "http://175.178.105.185:13000";
public const string LocalAddress = "http://192.168.10.104:8080";
/// <summary>
/// /api/CabinetInstance/id
/// </summary>
public const string UrlCabinetInstanceId = "/api/CabinetInstance/id";
}
}