parent
d47e9a97e7
commit
c0e8ae635a
@ -0,0 +1,21 @@
|
||||
class CommentMessageItemModel {
|
||||
int id;
|
||||
int type;
|
||||
int relationId;
|
||||
|
||||
CommentMessageItemModel({this.id, this.type, this.relationId});
|
||||
|
||||
CommentMessageItemModel.fromJson(Map<String, dynamic> json) {
|
||||
id = json['id'];
|
||||
type = json['type'];
|
||||
relationId = json['relationId'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['id'] = this.id;
|
||||
data['type'] = this.type;
|
||||
data['relationId'] = this.relationId;
|
||||
return data;
|
||||
}
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
class SystemMessageItemModel {
|
||||
int id;
|
||||
int type;
|
||||
int relationId;
|
||||
|
||||
SystemMessageItemModel({this.id, this.type, this.relationId});
|
||||
|
||||
SystemMessageItemModel.fromJson(Map<String, dynamic> json) {
|
||||
id = json['id'];
|
||||
type = json['type'];
|
||||
relationId = json['relationId'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['id'] = this.id;
|
||||
data['type'] = this.type;
|
||||
data['relationId'] = this.relationId;
|
||||
return data;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue