You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
441 B
21 lines
441 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'invitation.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class Invitation {
|
||
|
String? mid = '';
|
||
|
String? nickname = '';
|
||
|
String? avatar = '';
|
||
|
String? phone = '';
|
||
|
dynamic isFollow;
|
||
|
String? createTime = '';
|
||
|
|
||
|
Invitation();
|
||
|
|
||
|
factory Invitation.fromJson(Map<String, dynamic> json) => _$InvitationFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$InvitationToJson(this);
|
||
|
|
||
|
|
||
|
}
|