mirror of
https://github.com/osukey/osukey.git
synced 2025-05-25 23:47:30 +09:00
14 lines
336 B
C#
14 lines
336 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;
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
{
|
|
public class APIScoreToken
|
|
{
|
|
[JsonProperty("id")]
|
|
public int ID { get; set; }
|
|
}
|
|
}
|