mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-28 06:15:51 +08:00
15
lib/models_new/pgc/pgc_info_model/vt.dart
Normal file
15
lib/models_new/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