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, }); }