123456789101112131415161718192021222324252627282930 |
- /*-------------------------------------------------------------------------
- * 功能描述:ApiConfig
- * 作者:xulisong
- * 创建时间: 2019/7/30 10:14:55
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MBIRevitBase.Config
- {
- public class ApiConfig
- {
- public static string m_AlgorithmUrl;
- public static string AlgorithmUrl()
- {
- if (string.IsNullOrWhiteSpace(m_AlgorithmUrl))
- {
- m_AlgorithmUrl = "http://192.168.20.225:8080/revit-algorithm";
- }
- return m_AlgorithmUrl;
- }
- }
- }
|