17 lines
320 B
Dart
17 lines
320 B
Dart
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;
|
|
}
|