#pragma once #include "main/NekoRay.hpp" #include "ProxyEntity.hpp" namespace NekoRay { class Group : public JsonStore { public: int id = -1; bool archive = false; QString name = ""; QList order; QString url = ""; QString info = ""; qint64 last_update = 0; Group(); // 按 id 顺序 [[nodiscard]] QList> Profiles() const; // 按 显示 顺序 [[nodiscard]] QList> ProfilesWithOrder() const; }; }