class ReplyConfig { ReplyConfig({ this.showtopic, this.showUpFlag, this.readOnly, }); int? showtopic; bool? showUpFlag; bool? readOnly; ReplyConfig.fromJson(Map json) { showtopic = json['showtopic']; showUpFlag = json['show_up_flag']; readOnly = json['read_only']; } }