Item View
This commit is contained in:
@@ -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,
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
class KiosqueUser {
|
||||
final String uid;
|
||||
final String displayName;
|
||||
final String city;
|
||||
final String country;
|
||||
final String phoneNumber;
|
||||
final String emailAddress;
|
||||
final String gender;
|
||||
final String profileUrl;
|
||||
|
||||
KiosqueUser({
|
||||
this.uid,
|
||||
this.displayName,
|
||||
this.city,
|
||||
this.country,
|
||||
this.phoneNumber,
|
||||
this.emailAddress,
|
||||
this.gender,
|
||||
this.profileUrl,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user