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;
}

16
lib/classes/media.dart Normal file
View File

@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
class Media {
Media(
{required this.id,
required this.reference,
required this.type,
this.description,
this.comments});
final int id;
final String reference;
final String type;
final String? description;
final List<String>? comments;
}