JsonPair.hpp 340 B

12345678910111213141516171819
  1. // Copyright Benoit Blanchon 2014-2016
  2. // MIT License
  3. //
  4. // Arduino JSON library
  5. // https://github.com/bblanchon/ArduinoJson
  6. // If you like this project, please add a star!
  7. #pragma once
  8. #include "JsonVariant.hpp"
  9. namespace ArduinoJson {
  10. // A key value pair for JsonObject.
  11. struct JsonPair {
  12. const char* key;
  13. JsonVariant value;
  14. };
  15. }