mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-06-28 07:54:44 +08:00
追加更新:DPS网站 独立汉化
This commit is contained in:
@ -1,9 +1,10 @@
|
||||
/// rsi : "0.2.11"
|
||||
/// uex : "2.2"
|
||||
/// rsi : "0.2.21"
|
||||
/// uex : "2.3"
|
||||
/// addresses : "1.0"
|
||||
/// concierge : "1.1"
|
||||
/// hangar : "1.2"
|
||||
/// orgs : "1.3"
|
||||
/// dps : "0.1.1"
|
||||
|
||||
class AppWebLocalizationVersionsData {
|
||||
AppWebLocalizationVersionsData({
|
||||
@ -12,7 +13,8 @@ class AppWebLocalizationVersionsData {
|
||||
this.addresses,
|
||||
this.concierge,
|
||||
this.hangar,
|
||||
this.orgs,});
|
||||
this.orgs,
|
||||
this.dps,});
|
||||
|
||||
AppWebLocalizationVersionsData.fromJson(dynamic json) {
|
||||
rsi = json['rsi'];
|
||||
@ -21,6 +23,7 @@ class AppWebLocalizationVersionsData {
|
||||
concierge = json['concierge'];
|
||||
hangar = json['hangar'];
|
||||
orgs = json['orgs'];
|
||||
dps = json['dps'];
|
||||
}
|
||||
String? rsi;
|
||||
String? uex;
|
||||
@ -28,6 +31,7 @@ class AppWebLocalizationVersionsData {
|
||||
String? concierge;
|
||||
String? hangar;
|
||||
String? orgs;
|
||||
String? dps;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final map = <String, dynamic>{};
|
||||
@ -37,6 +41,7 @@ class AppWebLocalizationVersionsData {
|
||||
map['concierge'] = concierge;
|
||||
map['hangar'] = hangar;
|
||||
map['orgs'] = orgs;
|
||||
map['dps'] = dps;
|
||||
return map;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user