mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-05 01:27:49 +08:00
opt: member page
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
import 'package:PiliPlus/models/space/item.dart';
|
||||
import 'package:json_annotation/json_annotation.dart';
|
||||
|
||||
part 'like_archive.g.dart';
|
||||
|
||||
@JsonSerializable()
|
||||
class LikeArchive {
|
||||
int? count;
|
||||
List<dynamic>? item;
|
||||
int? count;
|
||||
List<Item>? item;
|
||||
|
||||
LikeArchive({this.count, this.item});
|
||||
LikeArchive({this.count, this.item});
|
||||
|
||||
factory LikeArchive.fromJson(Map<String, dynamic> json) {
|
||||
return _$LikeArchiveFromJson(json);
|
||||
}
|
||||
factory LikeArchive.fromJson(Map<String, dynamic> json) {
|
||||
return _$LikeArchiveFromJson(json);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() => _$LikeArchiveToJson(this);
|
||||
Map<String, dynamic> toJson() => _$LikeArchiveToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user