Infrastructure/OpenAuth.WebApi/Mqtt/MqttOptions.cs

17 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Infrastructure.Mqtt
{
public class MqttOptions
{
public string Server { get; set; } = string.Empty;
public int Port { get; set; } = 1883;
public string UserName { get; set; }
public string Password { get; set; }
}
}