loris/lib/business_logic/timeline/media.dart

14 lines
315 B
Dart
Raw Normal View History

2022-08-06 14:05:14 +00:00
class MediaAttachmentModel {
2022-08-10 18:49:51 +00:00
late String type;
2022-08-06 14:05:14 +00:00
late String url;
late String previewUrl;
late String? description;
MediaAttachmentModel.fromJson(Map<String, dynamic> json) {
url = json["url"];
previewUrl = json["preview_url"];
2022-08-10 18:49:51 +00:00
type = json["type"];
2022-08-06 14:05:14 +00:00
description = json["description"];
}
}