12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace WCS.Core
- {
- public static class Configs
- {
- /// <summary>
- /// 设置协议通讯代理类的基类,继承至DataObject,IBaseType
- /// </summary>
- public static Type? ProtocolProxyBaseType { get; set; }
- public static Encoding StringEncoding { get; set; }
- public static string DebugRedisUrl { get; set; }
- public static IPLCAccessorCreater? PLCAccessorCreater { get; set; }
-
- }
- }
|