mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
19
lib/models_new/fans/data.dart
Normal file
19
lib/models_new/fans/data.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user