Skip to content

Commit

Permalink
修复番剧状态数据int越界
Browse files Browse the repository at this point in the history
  • Loading branch information
ywmoyue committed Apr 15, 2024
1 parent 002d31a commit edafa2f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/BiliLite.UWP/Models/Common/Season/SeasonDetailStatModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
{
public class SeasonDetailStatModel
{
public int Coins { get; set; }
public long Coins { get; set; }

public int Danmakus { get; set; }
public long Danmakus { get; set; }

public int Favorites { get; set; }
public long Favorites { get; set; }

public string Followers { get; set; }

public string Play { get; set; }

public int Reply { get; set; }
public long Reply { get; set; }

public int Share { get; set; }
public long Share { get; set; }

public int Views { get; set; }
public long Views { get; set; }
}
}

0 comments on commit edafa2f

Please sign in to comment.