mirror of
https://github.com/ppy/osu.git
synced 2024-11-20 04:42:57 +08:00
34 lines
885 B
C#
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; }
|
|||
|
}
|
|||
|
}
|