mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-19 07:50:52 +01:00
20 lines
408 B
Dart
20 lines
408 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:wger/models/exercises/exercise.dart';
|
|
import 'package:wger/models/workouts/setting.dart';
|
|
|
|
class Set {
|
|
final int id;
|
|
final int sets;
|
|
final int order;
|
|
List<Exercise> exercises = [];
|
|
List<Setting> settings = [];
|
|
|
|
Set({
|
|
@required this.id,
|
|
@required this.sets,
|
|
@required this.order,
|
|
this.exercises,
|
|
this.settings,
|
|
});
|
|
}
|