mycorerepository/MyCore/Extensions/BrokerHostSettings.cs

21 lines
444 B
C#

namespace Mqtt.Client.AspNetCore.Settings
{
public class BrokerHostSettings
{
public string Host { set; get; }
public int Port { set; get; }
}
public class BrokerOnlineHostSettings
{
public string Host { set; get; }
public int Port { set; get; }
}
public class BrokerMerossHostSettings
{
public string Host { set; get; }
public int Port { set; get; }
}
}