基本完成

This commit is contained in:
zhutao
2025-08-28 16:27:56 +08:00
commit 5d7d233d2e
132 changed files with 6390 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
class ProfileOptionDto {
String? key;
List<String>? valuesList;
ProfileOptionDto({this.key, this.valuesList});
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map["key"] = key;
map["values"] = valuesList;
return map;
}
ProfileOptionDto.fromJson(dynamic json) {
key = json["key"] ?? "";
valuesList = json["values"] != null ? json["values"].cast<String>() : [];
}
}