mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Add equatable support to IUser
and RealmUser
Not sure this will stick, but let's add it for now to make testing detach support work nicely.
This commit is contained in:
@ -1,17 +1,26 @@
|
||||
// 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.Users;
|
||||
using Realms;
|
||||
|
||||
namespace osu.Game.Models
|
||||
{
|
||||
public class RealmUser : EmbeddedObject, IUser
|
||||
public class RealmUser : EmbeddedObject, IUser, IEquatable<RealmUser>
|
||||
{
|
||||
public int OnlineID { get; set; } = 1;
|
||||
|
||||
public string Username { get; set; }
|
||||
|
||||
public bool IsBot => false;
|
||||
|
||||
public bool Equals(RealmUser other)
|
||||
{
|
||||
if (ReferenceEquals(null, other)) return false;
|
||||
if (ReferenceEquals(this, other)) return true;
|
||||
|
||||
return OnlineID == other.OnlineID && Username == other.Username;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user