1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 09:37:24 +08:00
osu-lazer/osu.Game/Online/API/Requests/Responses/APIKudosuHistory.cs

21 lines
482 B
C#
Raw Normal View History

2019-08-09 15:47:52 +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;
using Newtonsoft.Json;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIKudosuHistory
{
[JsonProperty("id")]
public int ID;
2019-08-09 16:19:14 +08:00
[JsonProperty("created_at")]
2019-08-09 15:47:52 +08:00
public DateTimeOffset CreatedAt;
[JsonProperty("amount")]
public int Amount;
}
}