Files
PiliPlus/lib/models_new/pgc/pgc_info_model/vt.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

16 lines
347 B
Dart

class Vt {
String? icon;
String? pureText;
String? text;
int? value;
Vt({this.icon, this.pureText, this.text, this.value});
factory Vt.fromJson(Map<String, dynamic> json) => Vt(
icon: json['icon'] as String?,
pureText: json['pure_text'] as String?,
text: json['text'] as String?,
value: json['value'] as int?,
);
}