12 lines
243 B
C#
12 lines
243 B
C#
using MQTTnet.Client;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace backend.Application
|
|
{
|
|
public static class ApplicationState
|
|
{
|
|
public static IMqttClient? MqttClient { get; set; }
|
|
public static DbContext? DbContext { get; set; }
|
|
}
|
|
}
|