workouttest_app/lib/model/workout_tree.dart
Bossanyi Tibor 2177db10ea Aitrainer_app 1.1.1
test menu, customer modification, exercise save images, localization
2020-07-07 16:53:03 +02:00

17 lines
345 B
Dart

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