Files
sqlgen/include/dynamic/Column.hpp
2025-03-19 06:25:00 +01:00

20 lines
278 B
C++

#ifndef SQLGEN_DYNAMIC_COLUMN_HPP_
#define SQLGEN_DYNAMIC_COLUMN_HPP_
#include <string>
#include <vector>
#include "Type.hpp"
namespace sqlgen::dynamic {
struct Column {
std::string alias;
std::string name;
Type type;
};
} // namespace sqlgen::dynamic
#endif