18 lines
344 B
Dart
18 lines
344 B
Dart
class ActivityAction {
|
|
ActivityAction(
|
|
{required this.id,
|
|
required this.title,
|
|
required this.description,
|
|
this.repetitions,
|
|
this.time,
|
|
this.weight});
|
|
|
|
final int id;
|
|
final String title;
|
|
final String description;
|
|
final int? repetitions;
|
|
final int? weight;
|
|
// in milliseconds
|
|
final int? time;
|
|
}
|