2019-05-13 15:24:32 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2019-05-13 16:26:50 +08:00
|
|
|
using Newtonsoft.Json;
|
2019-05-13 15:24:32 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
{
|
|
|
|
public class APIChangelogIndex
|
|
|
|
{
|
2019-05-13 16:26:50 +08:00
|
|
|
[JsonProperty]
|
2019-05-13 15:24:32 +08:00
|
|
|
public List<APIChangelogBuild> Builds;
|
|
|
|
|
2019-05-13 16:26:50 +08:00
|
|
|
[JsonProperty]
|
2019-05-13 16:24:33 +08:00
|
|
|
public List<APIUpdateStream> Streams;
|
2019-05-13 15:24:32 +08:00
|
|
|
}
|
|
|
|
}
|