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

19 lines
475 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'draw_template_bean.g.dart';
@JsonSerializable()
class DrawTemplateBean {
int? Id;
String? Title;
String? ImageSmall;
int? Type;
double? Charging;
DrawTemplateBean(this.Id, this.Title, this.ImageSmall, this.Type, this.Charging);
factory DrawTemplateBean.fromJson(Map<String, dynamic> json) => _$DrawTemplateBeanFromJson(json);
Map<String, dynamic> toJson() => _$DrawTemplateBeanToJson(this);
}