8 lines
198 B
Dart
8 lines
198 B
Dart
|
import 'package:tangocard_reader/models/yokutango_entry.dart';
|
||
|
|
||
|
class BenkyouArgs {
|
||
|
final List<YokutangoEntry> cards;
|
||
|
final int? index;
|
||
|
|
||
|
const BenkyouArgs({required this.cards, this.index});
|
||
|
}
|