Files
rog_app/lib/features/data/game_event.dart
2024-04-01 09:26:56 +05:30

18 lines
282 B
Dart

enum EventType {
atStart,
starting,
started,
inCheckin,
checkiningIn,
checkedIn,
atGoal,
finishingGoal,
finishedGoal,
}
class GameEvent {
final EventType type;
final DateTime timestamp;
GameEvent({this.type = EventType.atStart, required this.timestamp});
}