IProbeHandler.cs 282 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace Edge.Core.IndustryStandardInterface.ATG
  6. {
  7. public interface IProbeHandler
  8. {
  9. Probe Probe { get; }
  10. Task<ProbeReading> GetProbeReadingAsync();
  11. }
  12. }