1
0

IGiveSensors.cs 173 B

123456789
  1. using System.Collections.Generic;
  2. namespace OhmGraphite
  3. {
  4. public interface IGiveSensors : IManage
  5. {
  6. IEnumerable<ReportedValue> ReadAllSensors();
  7. }
  8. }