17 lines
460 B
Dart
17 lines
460 B
Dart
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<String, dynamic> json) => _$GalleryWorkLabelBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$GalleryWorkLabelBeanToJson(this);
|
|
}
|