19 lines
393 B
Dart
19 lines
393 B
Dart
import 'dart:ui';
|
|
|
|
import 'exercise_type.dart';
|
|
|
|
class WorkoutTree {
|
|
int id;
|
|
int parent;
|
|
String name; // is also the key
|
|
String imageName;
|
|
Color color;
|
|
double fontSize;
|
|
bool child;
|
|
int exerciseTypeId;
|
|
ExerciseType exerciseType;
|
|
|
|
WorkoutTree(this.id, this.parent, this.name, this.imageName, this.color, this.fontSize, this.child, this.exerciseTypeId, this.exerciseType);
|
|
|
|
}
|