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