mirror of
https://github.com/ppy/osu
synced 2025-04-07 09:43:09 +00:00
Add JsonProperty hinting
This commit is contained in:
parent
8ecd1912e1
commit
d66a26cd11
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user