Files
osukey/osu.Game/Users/IUser.cs
2021-11-04 18:21:31 +09:00

13 lines
302 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Database;
namespace osu.Game.Users
{
public interface IUser : IHasOnlineID<int>
{
string Username { get; set; }
}
}