]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/structs/BookmarkStruct.h
Add bookmark folders.
[PrivacyBrowserPC.git] / src / structs / BookmarkStruct.h
index 98ac69a04ee9d3a1c2a70966858268c280bd0bd6..d7e0a868ac39bdb05b2a13de428848cef9845616 100644 (file)
 
 struct BookmarkStruct
 {
-    int id;
-    QString bookmarkName;
-    QString bookmarkUrl;
+    int databaseId;
+    QString name;
+    QString url;
+    double parentFolderId;
     int displayOrder;
+    bool isFolder;
+    double folderId;
     QIcon favoriteIcon;
 };
 #endif