import 'package:json_annotation/json_annotation.dart'; part 'gallery_work_label_bean.g.dart'; @JsonSerializable() class GalleryWorkLabelBean { int? LabelId; String? LabelName; int? LabelOrderId; GalleryWorkLabelBean(this.LabelId, this.LabelName, this.LabelOrderId); factory GalleryWorkLabelBean.fromJson(Map json) => _$GalleryWorkLabelBeanFromJson(json); Map toJson() => _$GalleryWorkLabelBeanToJson(this); }