初始化

This commit is contained in:
谢宇宁
2026-09-15 15:44:13 +07:00
commit a23ba685e9
1065 changed files with 101122 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import 'package:hgdj/hj_model/actress_info.dart';
class ActressModel {
ActressModel({
this.hasFollow,
this.info,
});
ActressModel.fromJson(dynamic json) {
hasFollow = json['hasFollow'];
if (json['info'] != null) {
info = ActressInfo.fromJson(json['info']);
}
if (json['desc'] is List) {
desc = (json['desc'] as List).map((e) => e.toString()).toList();
}
}
bool? hasFollow;
ActressInfo? info;
List<String>? desc;
}