1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Fuel.Application.MqttService
- {
- public class MqttOptions
- {
- public string Server { get; set; } = "192.168.5.5";
- public int Port { get; set; } = 1883;
- public string ClientId { get; set; } = $"client_{Guid.NewGuid()}";
- public string Username { get; set; } = "HSClient";
- public string Password { get; set; } = "HS202503";
- }
- }
|