16 lines
360 B
Dart
16 lines
360 B
Dart
// models/exercise.dart
|
|
// Datenmodell für eine Trainingsübung
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Exercise {
|
|
final String title; // Name der Übung
|
|
final String category; // Kategorie der Übung
|
|
final IconData icon; // Icon zur Darstellung
|
|
|
|
Exercise({
|
|
required this.title,
|
|
required this.category,
|
|
required this.icon,
|
|
});
|
|
} |