mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 12:27:25 +08:00
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
// 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 Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
{
|
|
public class APIChangelogBuild
|
|
{
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
|
|
[JsonProperty("version")]
|
|
public string Version { get; set; }
|
|
|
|
[JsonProperty("display_version")]
|
|
public string DisplayVersion { get; set; }
|
|
|
|
[JsonProperty("users")]
|
|
public long Users { get; set; }
|
|
|
|
[JsonProperty("created_at")]
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
[JsonProperty("update_stream")]
|
|
public APIUpdateStream UpdateStream { get; set; }
|
|
|
|
[JsonProperty("changelog_entries")]
|
|
public List<APIChangelogEntry> ChangelogEntries { get; set; }
|
|
|
|
[JsonProperty("versions")]
|
|
public VersionNatigation Versions { get; set; }
|
|
|
|
public class VersionNatigation
|
|
{
|
|
[JsonProperty("next")]
|
|
public APIChangelogBuild Next { get; set; }
|
|
|
|
[JsonProperty("previous")]
|
|
public APIChangelogBuild Previous { get; set; }
|
|
}
|
|
}
|
|
}
|