X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fstructs%2FBookmarkStruct.h;h=d7e0a868ac39bdb05b2a13de428848cef9845616;hb=HEAD;hp=2819174099d111d048c3591719e9d542ba3713b0;hpb=7c6edb3608791950c6146ac242e2b6f493ca8e8c;p=PrivacyBrowserPC.git diff --git a/src/structs/BookmarkStruct.h b/src/structs/BookmarkStruct.h index 2819174..cc25840 100644 --- a/src/structs/BookmarkStruct.h +++ b/src/structs/BookmarkStruct.h @@ -1,7 +1,7 @@ /* * Copyright 2023 Soren Stoutner . * - * This file is part of Privacy Browser PC . + * This file is part of 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 @@ -26,9 +26,13 @@ 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