19 lines
419 B
Dart
19 lines
419 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'pic_info_bean.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class PicInfoBean {
|
|
String? Pic;
|
|
dynamic PosX;
|
|
dynamic PosY;
|
|
dynamic W;
|
|
dynamic H;
|
|
|
|
PicInfoBean(this.Pic, this.PosX, this.PosY, this.W, this.H);
|
|
|
|
factory PicInfoBean.fromJson(Map<String, dynamic> json) => _$PicInfoBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$PicInfoBeanToJson(this);
|
|
}
|