123456789101112131415161718192021222324252627282930 |
-
- 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;
- }
- }
- }
|