mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
18 lines
470 B
Dart
18 lines
470 B
Dart
import 'package:PiliPlus/models_new/follow/list.dart';
|
|
|
|
class FollowData {
|
|
late List<FollowItemModel> list;
|
|
int? total;
|
|
|
|
FollowData({required this.list, this.total});
|
|
|
|
factory FollowData.fromJson(Map<String, dynamic> json) => FollowData(
|
|
list:
|
|
(json['list'] as List<dynamic>?)
|
|
?.map((e) => FollowItemModel.fromJson(e as Map<String, dynamic>))
|
|
.toList() ??
|
|
<FollowItemModel>[],
|
|
total: json['total'] as int?,
|
|
);
|
|
}
|