#pragma once #include #include namespace db { // Канал struct author { int id; std::string yt_id; Glib::ustring name; }; // Видео struct video { int id; std::string yt_id; Glib::ustring title; Glib::ustring description; std::string published_at; author author_obj; }; }