17 lines
430 B
Dart
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);
|
|
}
|