osu/osu.Game/Users/User.cs

14 lines
342 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;
2017-03-17 21:16:59 +00:00
public Country Region;
2017-03-15 11:09:44 +00:00
public Team Team;
}
}