10 lines
131 B
Dart
10 lines
131 B
Dart
class BookmarksModel {
|
|
int currentPage;
|
|
int limit;
|
|
|
|
BookmarksModel({
|
|
this.currentPage = 0,
|
|
this.limit = 100,
|
|
});
|
|
}
|