1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 08:27:26 +08:00
osu-lazer/osu.Game/Online/API/Requests/Responses/APIChangelogChart.cs
2018-07-21 10:05:12 +02:00

34 lines
885 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIChangelogChart
{
[JsonProperty("build_history")]
public List<BuildHistory> BuildHistory { get; set; }
[JsonProperty("order")]
public List<string> Order { get; set; }
[JsonProperty("stream_name")]
public string StreamName { get; set; }
}
public class BuildHistory
{
[JsonProperty("created_at")]
public DateTimeOffset CreatedAt { get; set; }
[JsonProperty("user_count")]
public long UserCount { get; set; }
[JsonProperty("label")]
public string Label { get; set; }
}
}