IBackendIoSimulator.cs 235 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.Backend
  6. {
  7. public interface IBackendIoSimulator
  8. {
  9. void SetDi(string group, string name, byte value);
  10. }
  11. }