44 lines
666 B
Dart
44 lines
666 B
Dart
class ActivityAction {
|
|
int id;
|
|
String title;
|
|
String description;
|
|
Set activityActionSet;
|
|
|
|
ActivityAction({
|
|
required this.id,
|
|
required this.title,
|
|
required this.description,
|
|
required this.activityActionSet,
|
|
});
|
|
}
|
|
|
|
class Set {
|
|
String type;
|
|
int total;
|
|
int rest;
|
|
Reps reps;
|
|
|
|
Set({
|
|
required this.type,
|
|
required this.total,
|
|
required this.rest,
|
|
required this.reps,
|
|
});
|
|
}
|
|
|
|
class Reps {
|
|
String type;
|
|
List<int> tempo;
|
|
List<int> amounts;
|
|
List<int> weights;
|
|
int rest;
|
|
|
|
Reps({
|
|
required this.type,
|
|
required this.tempo,
|
|
required this.amounts,
|
|
required this.weights,
|
|
required this.rest,
|
|
});
|
|
}
|