1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 07:57:22 +08:00

14 lines
343 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
namespace osu.Game.Users
{
public class User
{
public int Id;
public string Username;
public Country Country;
2017-03-15 08:09:44 -03:00
public Team Team;
}
}