time_progress_tracker/lib/actions/timer_actions.dart
Andreas Fahrecker e096653b2e Created first action and basic timer reducer
Signed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
2020-10-12 11:22:17 +02:00

9 lines
199 B
Dart

import 'package:time_progress_calculator/models/timer.dart';
abstract class Action {}
class UpdateTimerAction extends Action {
final Timer updatedTimer;
UpdateTimerAction(this.updatedTimer);
}