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.
|
|
|
class SystemMessageDetailModel {
|
|
|
|
int? id;
|
|
|
|
String? title;
|
|
|
|
String? content;
|
|
|
|
|
|
|
|
SystemMessageDetailModel({this.id, this.title, this.content});
|
|
|
|
|
|
|
|
SystemMessageDetailModel.fromJson(Map<String, dynamic> json) {
|
|
|
|
id = json['id'];
|
|
|
|
title = json['title'];
|
|
|
|
content = json['content'];
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
|
|
data['id'] = this.id;
|
|
|
|
data['title'] = this.title;
|
|
|
|
data['content'] = this.content;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|