1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00

Fix ChangelogEntries being a list of objects

This commit is contained in:
HoutarouOreki 2018-07-20 23:14:05 +02:00
parent 3115464238
commit c36a303b36

View File

@ -31,7 +31,7 @@ namespace osu.Game.Online.API.Requests.Responses
public UpdateStream UpdateStream { get; set; }
[JsonProperty("changelog_entries")]
public List<object> ChangelogEntries { get; set; }
public List<ChangelogEntry> ChangelogEntries { get; set; }
[JsonProperty("versions")]
public Versions Versions { get; set; }