1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:52:57 +08:00

Fix APIScoreToken's data type not matching server side

This commit is contained in:
Dean Herbert 2021-03-23 14:04:47 +09:00
parent d612964ac8
commit 58c60100b4

View File

@ -8,6 +8,6 @@ namespace osu.Game.Online.Rooms
public class APIScoreToken
{
[JsonProperty("id")]
public int ID { get; set; }
public long ID { get; set; }
}
}