mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 08:36:17 +08:00
15 lines
227 B
Dart
15 lines
227 B
Dart
class PgcConditionValue {
|
|
String? keyword;
|
|
String? name;
|
|
|
|
PgcConditionValue({
|
|
this.keyword,
|
|
this.name,
|
|
});
|
|
|
|
PgcConditionValue.fromJson(Map json) {
|
|
keyword = json['keyword'];
|
|
name = json['name'];
|
|
}
|
|
}
|