1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 20:59:35 +08:00
osu-lazer/osu.Game/Users/User.cs

44 lines
993 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-27 23:04:07 +08:00
using Newtonsoft.Json;
namespace osu.Game.Users
{
public class User
{
2017-03-27 23:04:07 +08:00
[JsonProperty(@"id")]
public long Id = 1;
[JsonProperty(@"username")]
public string Username;
2017-03-27 23:04:07 +08:00
//[JsonProperty(@"country")]
[JsonIgnore]
public Country Country;
2017-03-27 23:04:07 +08:00
//public Team Team;
2017-03-27 23:04:07 +08:00
[JsonProperty(@"colour")]
public string Colour;
2017-04-11 13:00:21 +08:00
[JsonProperty(@"avatarUrl")]
public string AvatarUrl;
[JsonProperty(@"cover")]
public UserCover Cover;
public class UserCover
{
[JsonProperty(@"customUrl")]
public string CustomUrl;
[JsonProperty(@"url")]
public string Url;
[JsonProperty(@"id")]
public int? Id;
}
}
}