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
588 B
21 lines
588 B
class UserCountData {
|
|
int? friendNum;
|
|
int? friendApplyNum;
|
|
int? visitorNum;
|
|
|
|
UserCountData({this.friendNum, this.friendApplyNum, this.visitorNum});
|
|
|
|
UserCountData.fromJson(Map<String, dynamic> json) {
|
|
friendNum = json['friendNum'];
|
|
friendApplyNum = json['friendApplyNum'];
|
|
visitorNum = json['visitorNum'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['friendNum'] = this.friendNum;
|
|
data['friendApplyNum'] = this.friendApplyNum;
|
|
data['visitorNum'] = this.visitorNum;
|
|
return data;
|
|
}
|
|
}
|