blob: 98f37277a01ccae789f074eaf30cc44a1066bf0d [file]
// NOLINTBEGIN
#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
// NOLINTEND