SendTrain/lib/classes/activity_action.dart
2024-04-22 13:57:56 -04:00

18 lines
344 B
Dart

class ActivityAction {
ActivityAction(
{required this.id,
required this.title,
required this.description,
this.repetitions,
this.time,
this.weight});
final int id;
final String title;
final String description;
final int? repetitions;
final int? weight;
// in milliseconds
final int? time;
}