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; }
}