2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-27 09:31:36 +00:00
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online
|
|
|
|
|
{
|
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"username")]
|
|
|
|
|
public string Name;
|
|
|
|
|
|
2016-12-01 07:44:24 +00:00
|
|
|
|
[JsonProperty(@"id")]
|
|
|
|
|
public int Id;
|
|
|
|
|
|
2016-09-27 09:31:36 +00:00
|
|
|
|
[JsonProperty(@"colour")]
|
|
|
|
|
public string Colour;
|
|
|
|
|
}
|
|
|
|
|
}
|