import 'data_entry.dart';
class BenkyouArgs {
final List<DataEntry> cards;
final int? index;
const BenkyouArgs({required this.cards, this.index});
}