10 lines
190 B
Dart
10 lines
190 B
Dart
|
import 'package:test_app/domain/card.dart';
|
||
|
|
||
|
class HomeData {
|
||
|
final List<CardData>? data;
|
||
|
int? currentPage;
|
||
|
int? nextPage;
|
||
|
|
||
|
HomeData({this.data, this.currentPage, this.nextPage});
|
||
|
}
|