Andreas Fahrecker e889f93d5c Cleaned up the repo
Singed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
2021-03-13 19:47:20 +01:00

17 lines
388 B
Dart

import 'package:time_progress_tracker/models/app_settings.dart';
import 'package:time_progress_tracker/models/time_progress.dart';
abstract class BoolAction {}
abstract class AppSettingsAction {
final AppSettings appSettings;
AppSettingsAction(this.appSettings);
}
abstract class TimeProgressAction {
final TimeProgress timeProgress;
TimeProgressAction(this.timeProgress);
}