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.

14 lines
314 B

8 months ago
  1. namespace Mirle.Component.MPLC.Interfaces
  2. {
  3. /// <summary>
  4. /// 控制器工廠介面
  5. /// </summary>
  6. public interface IPLCHostFactory
  7. {
  8. /// <summary>
  9. /// 取得實例
  10. /// </summary>
  11. /// <returns>控制器介面</returns>
  12. IPLCHost GetInstance();
  13. }
  14. }