migration commit

This commit is contained in:
Joshua Burman
2024-04-22 13:57:56 -04:00
commit cf9051f6d1
143 changed files with 5696 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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;
}