mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
14 lines
273 B
Dart
14 lines
273 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class WorkoutPlan with ChangeNotifier {
|
|
final int id;
|
|
final DateTime creation_date;
|
|
final String description;
|
|
|
|
WorkoutPlan({
|
|
@required this.id,
|
|
@required this.description,
|
|
@required this.creation_date,
|
|
});
|
|
}
|