tbf/TBF/BenchControl/GenericDevices/IReceivesDataFromRadio.cs

13 lines
236 B
C#

///
/// Copyright (c) 2018 Sensus Slovensko a.s.
///
using System;
namespace TBF.BenchControl.GenericDevices
{
public interface IReceivesDataFromRadio
{
void WMStateReceived(string serialNr, double wmState);
}
}