import 'package:json_annotation/json_annotation.dart'; part 'gallery_label_bean.g.dart'; @JsonSerializable() class GalleryLabelBean { int? LabelId; String? LabelName; bool? IsDefault; GalleryLabelBean(this.LabelId, this.LabelName, this.IsDefault); factory GalleryLabelBean.fromJson(Map json) => _$GalleryLabelBeanFromJson(json); Map toJson() => _$GalleryLabelBeanToJson(this); }