16 lines
307 B
Dart
Raw Normal View History

2024-03-09 14:29:48 +01:00
import '../../../../common/routing/routes.dart';
class Benchmark {
final String title;
final String desc;
final String buttonText;
final RoutesBenchmark route;
Benchmark({
required this.title,
required this.desc,
this.buttonText = 'Go to benchmark',
required this.route,
});
}