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.
24 lines
519 B
24 lines
519 B
class MessageCenterModel {
|
|
int sysCount;
|
|
String sysTitle;
|
|
|
|
MessageCenterModel.zero() {
|
|
sysCount = 0;
|
|
sysTitle = '';
|
|
}
|
|
|
|
MessageCenterModel({this.sysCount, this.sysTitle});
|
|
|
|
MessageCenterModel.fromJson(Map<String, dynamic> json) {
|
|
sysCount = json['sysCount'];
|
|
sysTitle = json['sysTitle'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['sysCount'] = this.sysCount;
|
|
data['sysTitle'] = this.sysTitle;
|
|
return data;
|
|
}
|
|
}
|