dreampad/lib/app/modules/select/models/occupation_model.dart

22 lines
321 B
Dart
Raw Normal View History

2023-11-28 10:44:58 +08:00
class Occupation {
int? id;
int? gender;
String? name;
String? enName;
String? hImage;
String? vImage;
bool? selected;
bool? enable;
Occupation({
this.id,
this.gender,
this.name,
this.enName,
this.hImage,
this.vImage,
this.selected = false,
this.enable = false,
});
}