Add JsonProperty hinting

This commit is contained in:
Dean Herbert 2019-05-13 17:26:50 +09:00
parent 8ecd1912e1
commit d66a26cd11

View File

@ -2,13 +2,16 @@
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic; using System.Collections.Generic;
using Newtonsoft.Json;
namespace osu.Game.Online.API.Requests.Responses namespace osu.Game.Online.API.Requests.Responses
{ {
public class APIChangelogIndex public class APIChangelogIndex
{ {
[JsonProperty]
public List<APIChangelogBuild> Builds; public List<APIChangelogBuild> Builds;
[JsonProperty]
public List<APIUpdateStream> Streams; public List<APIUpdateStream> Streams;
} }
} }