mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
13 lines
317 B
C#
13 lines
317 B
C#
namespace Mqtt.Client.AspNetCore.Services
|
|
{
|
|
public class MqttClientServiceProvider
|
|
{
|
|
public readonly IMqttClientService MqttClientService;
|
|
|
|
public MqttClientServiceProvider(IMqttClientService mqttClientService)
|
|
{
|
|
MqttClientService = mqttClientService;
|
|
}
|
|
}
|
|
}
|