1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Users/IUser.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
613 B
C#
Raw Normal View History

// 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.
using System;
using osu.Game.Database;
namespace osu.Game.Users
{
public interface IUser : IHasOnlineID<int>, IEquatable<IUser>
{
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; }
bool IEquatable<IUser>.Equals(IUser? other)
{
if (other == null)
return false;
return OnlineID == other.OnlineID && Username == other.Username;
}
}
}