namespace ZB.MOM.WW.OtOpcUa.Driver.Mqtt;
///
/// Selects the ingest shape an instance uses. See
/// docs/plans/2026-07-15-mqtt-sparkplug-driver-design.md §5.1.
///
public enum MqttMode
{
/// Plain MQTT — the driver subscribes to authored topics directly.
Plain,
/// Sparkplug B — the driver decodes Tahu-encoded NBIRTH/DBIRTH/NDATA/DDATA payloads.
SparkplugB,
}