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