Include the missing InfluxDBTagDTO data structure
diff --git a/platform/tools/influxdb-connector/src/main/java/org/eclipse/sensinact/gateway/tools/connector/influxdb/InfluxDBTagDTO.java b/platform/tools/influxdb-connector/src/main/java/org/eclipse/sensinact/gateway/tools/connector/influxdb/InfluxDBTagDTO.java
new file mode 100644
index 0000000..3282c53
--- /dev/null
+++ b/platform/tools/influxdb-connector/src/main/java/org/eclipse/sensinact/gateway/tools/connector/influxdb/InfluxDBTagDTO.java
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2021 Kentyou.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+*    Kentyou - initial API and implementation
+ */
+package org.eclipse.sensinact.gateway.tools.connector.influxdb;
+
+public class InfluxDBTagDTO {
+	public String name;
+	public String value;
+	public boolean pattern;
+}