mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
15 lines
310 B
C#
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; }
|
|
}
|
|
}
|