X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fstructs%2FBookmarkStruct.h;h=d7e0a868ac39bdb05b2a13de428848cef9845616;hb=HEAD;hp=98ac69a04ee9d3a1c2a70966858268c280bd0bd6;hpb=f18185adbdce9891be0cbd2197838441aaa5ed3e;p=PrivacyBrowserPC.git diff --git a/src/structs/BookmarkStruct.h b/src/structs/BookmarkStruct.h index 98ac69a..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,10 +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