import 'package:dart_json_mapper/dart_json_mapper.dart'; @jsonSerializable class SysConfig { String? affurl; String? userLoginUrl; String? userLoginUrlKe; String? userBuy; String? userTicket; String? userReg; String? userReset; String? userTutorial; String? userRofile; String? userDownload; int? tag; SysConfig( {this.affurl, this.userLoginUrl, this.userLoginUrlKe, this.userBuy, this.userTicket, this.userReg, this.userReset, this.userTutorial, this.userRofile, this.userDownload, this.tag}); }