workouttest_app/lib/model/workout_tree.dart
2020-07-08 09:34:34 +02:00

16 lines
315 B
Dart

import 'dart:ui';
class WorkoutTree {
int id;
int parent;
String name; // is also the key
String imageName;
Color color;
double fontSize;
bool child;
int exerciseTypeId;
WorkoutTree(this.id, this.parent, this.name, this.imageName, this.color, this.fontSize, this.child, this.exerciseTypeId);
}