Files
PiliPlus/lib/models_new/fans/data.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

20 lines
543 B
Dart

import 'package:PiliPlus/models_new/fans/list.dart';
class FansData {
List<FansItemModel>? list;
String? offset;
int? reVersion;
int? total;
FansData({this.list, this.offset, this.reVersion, this.total});
factory FansData.fromJson(Map<String, dynamic> json) => FansData(
list: (json['list'] as List<dynamic>?)
?.map((e) => FansItemModel.fromJson(e as Map<String, dynamic>))
.toList(),
offset: json['offset'] as String?,
reVersion: json['re_version'] as int?,
total: json['total'] as int?,
);
}