Files
PiliPlus/lib/models_new/pgc/pgc_index_condition/value.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

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'];
}
}