1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 02:33:02 +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 public class APIScoreToken
{ {
[JsonProperty("id")] [JsonProperty("id")]
public int ID { get; set; } public long ID { get; set; }
} }
} }