fix save reply

opt profile page

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-11 23:36:33 +08:00
parent c346d586a5
commit 44ba554e0e
23 changed files with 64 additions and 57 deletions

View File

@@ -4,7 +4,7 @@ class VideoRelation {
bool? seasonFav;
bool? like;
bool? dislike;
int? coin;
num? coin;
VideoRelation({
this.attention,
@@ -21,6 +21,6 @@ class VideoRelation {
seasonFav: json['season_fav'] as bool?,
like: json['like'] as bool?,
dislike: json['dislike'] as bool?,
coin: json['coin'] as int?,
coin: json['coin'] as num?,
);
}