22 lines
397 B
Dart
22 lines
397 B
Dart
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,
|
|
});
|
|
}
|