Files
simapi-net/Configurations/SimApiSynapseOptions.cs
T

24 lines
556 B
C#
Raw Normal View History

2024-04-16 06:57:56 +08:00
namespace SimApi.Configurations;
2023-10-20 12:33:18 +08:00
public class SimApiSynapseOptions
{
2024-07-26 05:03:28 +08:00
/// <summary>
/// Mqtt服务器的Websocket地址
/// </summary>
public string Websocket { get; set; }
2023-10-20 12:33:18 +08:00
2024-07-26 05:03:28 +08:00
public string Username { get; set; }
2023-10-20 12:33:18 +08:00
2024-07-26 05:03:28 +08:00
public string Password { get; set; }
2023-10-20 12:33:18 +08:00
public string SysName { get; set; }
public string AppName { get; set; }
public string AppId { get; set; }
public int RpcTimeout { get; set; } = 3;
public bool DisableEventClient { get; set; } = false;
public bool DisableRpcClient { get; set; } = false;
}