mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-31 16:18:22 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
15
lib/models/pgc/pgc_info_model/vt.dart
Normal file
15
lib/models/pgc/pgc_info_model/vt.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user