mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-09 11:37:51 +08:00
15 lines
424 B
Dart
15 lines
424 B
Dart
import 'package:PiliPlus/models/model_owner.dart';
|
|
|
|
class FollowingsFollowedUpper {
|
|
List<Owner>? items;
|
|
String? jumpUrl;
|
|
|
|
FollowingsFollowedUpper({this.items, this.jumpUrl});
|
|
|
|
factory FollowingsFollowedUpper.fromJson(Map<String, dynamic> json) =>
|
|
FollowingsFollowedUpper(
|
|
items: (json['items'] as List?)?.map((e) => Owner.fromJson(e)).toList(),
|
|
jumpUrl: json['jump_url'] as String?,
|
|
);
|
|
}
|