mycorerepository/MyCore/Extensions/BrokerHostSettings.cs
2021-01-02 16:53:06 +01:00

15 lines
310 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; }
}
}