You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
Dart
18 lines
392 B
Dart
class WinnerModel {
|
|
String? id;
|
|
String? marathoneId;
|
|
String? employeeId;
|
|
String? nameEn;
|
|
String? nameAr;
|
|
|
|
WinnerModel({id, marathoneId, employeeId, nameEn, nameAr});
|
|
|
|
WinnerModel.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
marathoneId = json['marathoneId'];
|
|
employeeId = json['employeeId'];
|
|
nameEn = json['nameEn'];
|
|
nameAr = json['nameAr'];
|
|
}
|
|
}
|