Files
2025-05-04 10:22:38 +08:00

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();
}
}
}