You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
362 B
19 lines
362 B
namespace JiLinApp.Biz.TransmitAlarm;
|
|
|
|
public class AlarmZmqService : IAlarmService
|
|
{
|
|
public void Start()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Close()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SendAlarmMessage(AlarmMessage msg)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|