feat: remove fan

Closes #733

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-22 18:05:02 +08:00
parent 1f2f00d49c
commit 7856857cca
8 changed files with 139 additions and 70 deletions

View File

@@ -9,9 +9,11 @@ part of 'relation.dart';
Relation _$RelationFromJson(Map<String, dynamic> json) => Relation(
status: (json['status'] as num?)?.toInt(),
isFollow: (json['is_follow'] as num?)?.toInt(),
isFollowed: (json['is_followed'] as num?)?.toInt(),
);
Map<String, dynamic> _$RelationToJson(Relation instance) => <String, dynamic>{
'status': instance.status,
'is_follow': instance.isFollow,
'is_followed': instance.isFollowed,
};