Renamed links to bookmarks

This commit is contained in:
Juan Gilsanz Polo
2024-02-24 01:45:57 +01:00
parent bb941f1973
commit f11b112f97
23 changed files with 252 additions and 388 deletions

View File

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