AI_Drawing/lib/bean/gallery_label_bean.dart
2024-06-03 15:30:15 +08:00

17 lines
430 B
Dart

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<String, dynamic> json) => _$GalleryLabelBeanFromJson(json);
Map<String, dynamic> toJson() => _$GalleryLabelBeanToJson(this);
}