10 lines
155 B
C#
10 lines
155 B
C#
|
using MQTTnet.Client;
|
||
|
|
||
|
namespace backend.Application
|
||
|
{
|
||
|
public static class ApplicationState
|
||
|
{
|
||
|
public static IMqttClient? MqttClient { get; set; }
|
||
|
}
|
||
|
}
|