13 lines
236 B
C#
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);
|
|
}
|
|
}
|