18 lines
396 B
Dart
18 lines
396 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'invite_new_bean.g.dart';
|
|
|
|
///标签
|
|
@JsonSerializable(explicitToJson: true)
|
|
class InviteNewBean {
|
|
String? imgUrl;
|
|
int? type;
|
|
|
|
|
|
InviteNewBean(this.imgUrl, this.type);
|
|
|
|
factory InviteNewBean.fromJson(Map<String, dynamic> json) => _$InviteNewBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$InviteNewBeanToJson(this);
|
|
}
|