1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 23:27:28 +08:00
osu-lazer/osu.Game/Online/API/Requests/Responses/APIChangelogBuild.cs

48 lines
1.3 KiB
C#
Raw Normal View History

2019-05-12 23:36:05 +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.
2018-07-20 01:07:24 +08:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIChangelogBuild
2018-07-20 01:07:24 +08:00
{
[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; }
2018-07-20 01:07:24 +08:00
[JsonProperty("update_stream")]
public APIUpdateStream UpdateStream { get; set; }
2018-07-20 01:07:24 +08:00
[JsonProperty("changelog_entries")]
public List<APIChangelogEntry> ChangelogEntries { get; set; }
[JsonProperty("versions")]
2019-05-15 17:21:06 +08:00
public VersionNatigation Versions { get; set; }
2019-05-15 17:21:06 +08:00
public class VersionNatigation
{
[JsonProperty("next")]
public APIChangelogBuild Next { get; set; }
[JsonProperty("previous")]
public APIChangelogBuild Previous { get; set; }
}
public override string ToString() => $"{UpdateStream.DisplayName} {DisplayVersion}";
2018-07-20 01:07:24 +08:00
}
}