2024-06-27 00:01:07 +02:00

16 lines
307 B
Dart

class Events {
String? id;
String? name;
String? place;
String? startDate;
Events({this.place, this.id, this.name, this.startDate});
Events.fromJson(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
place = json['place'];
startDate = json["start_date"];
}
}