add info for event
This commit is contained in:
@@ -3,6 +3,11 @@ class Events {
|
||||
String? name;
|
||||
String? place;
|
||||
String? startDate;
|
||||
String? endDate;
|
||||
String? description;
|
||||
String? zipCode;
|
||||
String? city;
|
||||
String? country;
|
||||
|
||||
Events({this.place, this.id, this.name, this.startDate});
|
||||
|
||||
@@ -11,5 +16,10 @@ class Events {
|
||||
name = json['name'];
|
||||
place = json['place'];
|
||||
startDate = json["start_date"];
|
||||
endDate = json['end_date'];
|
||||
description = json['description'];
|
||||
zipCode = json["zip_code"];
|
||||
city = json['city'];
|
||||
country = json['country'];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user