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

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