Added tag bookmarks screen

This commit is contained in:
Juan Gilsanz Polo
2024-02-24 18:39:23 +01:00
parent e50e5dd81f
commit ac8c96cf43
15 changed files with 361 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
class BookmarksModel {
int currentPage;
int limit;
BookmarksModel({
this.currentPage = 0,
this.limit = 100,
});
}