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