Configs.cs 539 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace WCS.Core
  5. {
  6. public static class Configs
  7. {
  8. /// <summary>
  9. /// 设置协议通讯代理类的基类,继承至DataObject,IBaseType
  10. /// </summary>
  11. public static Type? ProtocolProxyBaseType { get; set; }
  12. public static Encoding StringEncoding { get; set; }
  13. public static string DebugRedisUrl { get; set; }
  14. public static IPLCAccessorCreater? PLCAccessorCreater { get; set; }
  15. }
  16. }