1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 22:33:05 +08:00

Remove unused setter in interface type

This commit is contained in:
Salman Ahmed 2021-11-05 12:10:05 +03:00
parent 846c80f12c
commit 608958b186

View File

@ -7,7 +7,7 @@ namespace osu.Game.Users
{
public interface IUser : IHasOnlineID<int>
{
string Username { get; set; }
string Username { get; }
bool IsBot { get; }
}