TmpMenu/src/services/translation_service/translation_entry.hpp

13 lines
177 B
C++
Raw Normal View History

#pragma once
namespace big
{
class translation_entry
{
public:
std::string name;
std::string file;
NLOHMANN_DEFINE_TYPE_INTRUSIVE(translation_entry, name, file)
};
}