mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
17 lines
309 B
Dart
17 lines
309 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'series.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class Series {
|
|
List<dynamic>? item;
|
|
|
|
Series({this.item});
|
|
|
|
factory Series.fromJson(Map<String, dynamic> json) {
|
|
return _$SeriesFromJson(json);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() => _$SeriesToJson(this);
|
|
}
|