Files
linkding-ios/lib/screens/links/model/links.model.dart
Juan Gilsanz Polo 1521fd0f7e Load bookmarks
2024-02-22 18:32:20 +01:00

10 lines
123 B
Dart

class LinksModel {
int currentPage;
int limit;
LinksModel({
this.currentPage = 0,
this.limit = 100,
});
}