workouttest_app/lib/model/workout_tree.dart
2020-08-17 12:38:47 +02:00

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);
}