blob: 0e98769a4f6649f3b6713f483fe9cdae307e1f7d [file] [log] [blame]
#pragma once
#include <cstdint>
#include <nlohmann/json.hpp>
namespace registered_client
{
// clang-format off
enum class ClientType : std::uint8_t{
Invalid,
Monitor,
Configure,
};
NLOHMANN_JSON_SERIALIZE_ENUM(ClientType, {
{ClientType::Invalid, "Invalid"},
{ClientType::Monitor, "Monitor"},
{ClientType::Configure, "Configure"},
});
} // namespace registered_client
// clang-format on