summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/JsonPair.hpp
blob: 4172430455615a6a60c12e06f24faf0782258e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2018
// MIT License

#pragma once

#include "JsonVariant.hpp"

namespace ArduinoJson {

// A key value pair for JsonObject.
struct JsonPair {
  const char* key;
  JsonVariant value;
};
}