IDevice.cs 248 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.StlMes.Client.LgResMgt.Mcms
  6. {
  7. interface IDevice
  8. {
  9. bool Init(string config);
  10. bool Open();
  11. bool Close();
  12. }
  13. }