CarTrackingRuleEngine/RuleEngine/Constants/MqttTopic.cs

8 lines
238 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
namespace RuleEngine.Constants
{
public class MqttTopic
{
public const string UpdatePVTFormat = "devices/update_pvt/{0}";
2025-05-15 15:53:21 +07:00
public const string UpdatePVTResponseFormat = "iot/devices/update_PVT_response/{0}";
2025-05-15 10:01:56 +07:00
}
}