19 lines
475 B
Dart
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);
|
|
}
|