app/lib/data/sc_localization_data.dart

43 lines
1.2 KiB
Dart
Raw Normal View History

2023-10-12 20:50:50 +08:00
/// enable : true
/// versionName : "3.20.0(PU)_CN_V1"
/// updateAt : "2023-10-11: 11:10:00"
2023-10-09 09:32:07 +08:00
/// info : "简体中文汉化"
2023-10-12 20:50:50 +08:00
/// channel : "PU"
/// node : "已知问题:\n3D中文字体不显示临时解决方法将交互恢复成英文但由于数量繁多难免有遗漏汉化组正在尽力找\n·角色抬头显示器(HUD)的中文字体不显示\n·某些元素字体过小\n·搜索栏无法输入中文\n·部位文本未翻译在翻了在翻了"
2023-10-09 09:32:07 +08:00
class ScLocalizationData {
ScLocalizationData({
this.enable,
this.versionName,
this.updateAt,
this.info,
2023-10-12 20:50:50 +08:00
this.channel,
this.node,});
2023-10-09 09:32:07 +08:00
ScLocalizationData.fromJson(dynamic json) {
enable = json['enable'];
versionName = json['versionName'];
updateAt = json['updateAt'];
info = json['info'];
channel = json['channel'];
2023-10-12 20:50:50 +08:00
node = json['node'];
2023-10-09 09:32:07 +08:00
}
bool? enable;
String? versionName;
String? updateAt;
String? info;
String? channel;
2023-10-12 20:50:50 +08:00
String? node;
2023-10-09 09:32:07 +08:00
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['enable'] = enable;
map['versionName'] = versionName;
map['updateAt'] = updateAt;
map['info'] = info;
map['channel'] = channel;
2023-10-12 20:50:50 +08:00
map['node'] = node;
2023-10-09 09:32:07 +08:00
return map;
}
}