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