Service.cs 288 B

12345678910111213141516171819
  1. using FlowChartModule.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TcpModbusSlaveModule
  8. {
  9. public class Service : iModule
  10. {
  11. public Service() : base()
  12. {
  13. }
  14. }
  15. }