#pragma once #include #include "nlohmann/json.hpp" namespace nsRUNCTRL { using stRunEolState = struct _stRunEolState { std::string strName; int bEol{ true }; }; NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE( stRunEolState, strName, bEol ) }