/// close : false
|
/// content : "这是团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知团队测试通知"
|
/// link : "http://www.baidu.com"
|
/// md5 : "6003334c675bc07a627345e406573ef0"
|
|
class AppNotifyMsgModel {
|
AppNotifyMsgModel({
|
bool? close,
|
String? content,
|
String? link,
|
String? md5,
|
}) {
|
_close = close;
|
_content = content;
|
_link = link;
|
_md5 = md5;
|
}
|
|
|
AppNotifyMsgModel.fromJson(dynamic json) {
|
_close = json['close'];
|
_content = json['content'];
|
_link = json['link'];
|
_md5 = json['md5'];
|
}
|
|
bool? _close;
|
String? _content;
|
String? _link;
|
String? _md5;
|
|
bool? get close => _close;
|
|
String? get content => _content;
|
|
String? get link => _link;
|
|
String? get md5 => _md5;
|
|
Map<String, dynamic> toJson() {
|
final map = <String, dynamic>{};
|
map['close'] = _close;
|
map['content'] = _content;
|
map['link'] = _link;
|
map['md5'] = _md5;
|
return map;
|
}
|
}
|