mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-22 03:31:09 +08:00
14
lib/models_new/pgc/pgc_index_condition/value.dart
Normal file
14
lib/models_new/pgc/pgc_index_condition/value.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
class PgcConditionValue {
|
||||
String? keyword;
|
||||
String? name;
|
||||
|
||||
PgcConditionValue({
|
||||
this.keyword,
|
||||
this.name,
|
||||
});
|
||||
|
||||
PgcConditionValue.fromJson(Map json) {
|
||||
keyword = json['keyword'];
|
||||
name = json['name'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user