]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/structs/BookmarkStruct.h
Partial filter list implementation.
[PrivacyBrowserPC.git] / src / structs / BookmarkStruct.h
index 2819174099d111d048c3591719e9d542ba3713b0..cc258403b19e3b0914d0539e35c4a5a8ed76938d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright 2023 Soren Stoutner <soren@stoutner.com>.
  *
- * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
+ * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc/>.
  *
  * Privacy Browser PC is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 
 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