17 lines
374 B
C#
17 lines
374 B
C#
using linesider_screen_bankend.Services.Interfaces;
|
|
|
|
namespace linesider_screen_bankend.Services
|
|
{
|
|
public class MqttService : IMqttService
|
|
{
|
|
public void StartMqtt()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
public void EndMqtt()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|