2021-11-04 17:02:44 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-01-12 11:39:40 +08:00
|
|
|
using System;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Database;
|
|
|
|
|
|
|
|
namespace osu.Game.Users
|
|
|
|
{
|
2022-01-12 11:39:40 +08:00
|
|
|
public interface IUser : IHasOnlineID<int>, IEquatable<IUser>
|
2021-11-04 17:02:44 +08:00
|
|
|
{
|
2021-11-05 17:10:05 +08:00
|
|
|
string Username { get; }
|
2021-11-05 12:38:48 +08:00
|
|
|
|
2022-07-18 15:16:59 +08:00
|
|
|
CountryCode CountryCode { get; }
|
2022-07-16 11:30:25 +08:00
|
|
|
|
2021-11-05 12:38:48 +08:00
|
|
|
bool IsBot { get; }
|
2022-01-12 11:39:40 +08:00
|
|
|
|
|
|
|
bool IEquatable<IUser>.Equals(IUser? other)
|
|
|
|
{
|
|
|
|
if (other == null)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return OnlineID == other.OnlineID && Username == other.Username;
|
|
|
|
}
|
2021-11-04 17:02:44 +08:00
|
|
|
}
|
|
|
|
}
|