tbf/TBF/Rig/GenericDevices/IReceivesDataFromRadio.cs
2021-10-26 19:38:09 +02:00

13 lines
227 B
C#

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