mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
12 lines
304 B
C#
12 lines
304 B
C#
namespace Mqtt.Client.AspNetCore.Services
|
|
{
|
|
public class ExternalService
|
|
{
|
|
private readonly IMqttClientService mqttClientService;
|
|
public ExternalService(MqttClientServiceProvider provider)
|
|
{
|
|
mqttClientService = provider.MqttClientService;
|
|
}
|
|
}
|
|
}
|