show medal wall

show user follow time

show top image title

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-20 22:12:43 +08:00
parent 662ccfcf0a
commit ae59d257c3
21 changed files with 927 additions and 222 deletions

View File

@@ -0,0 +1,25 @@
import 'package:PiliPlus/utils/extension/iterable_ext.dart';
class RelationData {
int? mid;
int? attribute;
int? mtime;
List<int>? tag;
int? special;
RelationData({
this.mid,
this.attribute,
this.mtime,
this.tag,
this.special,
});
factory RelationData.fromJson(Map<String, dynamic> json) => RelationData(
mid: json['mid'] as int?,
attribute: json['attribute'] as int?,
mtime: json['mtime'] as int?,
tag: (json['tag'] as List<dynamic>?)?.fromCast(),
special: json['special'] as int?,
);
}