Item View

This commit is contained in:
2021-03-20 13:36:49 +02:00
parent 7396a9a0a4
commit 61180a7fe4
15 changed files with 665 additions and 21 deletions
+27
View File
@@ -0,0 +1,27 @@
class Magazine {
final String uid;
final String title;
final String urlCover;
final DateTime publishedAt;
final DateTime createdAt;
final DateTime updatedAt;
final String summaryText;
final String summaryUrl;
final String magazineUrl;
final bool validated;
final String uidCategory;
Magazine({
this.validated,
this.uid,
this.title,
this.urlCover,
this.publishedAt,
this.createdAt,
this.updatedAt,
this.summaryText,
this.summaryUrl,
this.magazineUrl,
this.uidCategory,
});
}