2021-11-04 17:13:45 +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:13:45 +08:00
|
|
|
using osu.Game.Users;
|
|
|
|
using Realms;
|
|
|
|
|
|
|
|
namespace osu.Game.Models
|
|
|
|
{
|
2022-01-12 11:39:40 +08:00
|
|
|
public class RealmUser : EmbeddedObject, IUser, IEquatable<RealmUser>
|
2021-11-04 17:13:45 +08:00
|
|
|
{
|
|
|
|
public int OnlineID { get; set; } = 1;
|
|
|
|
|
|
|
|
public string Username { get; set; }
|
2021-11-05 12:38:48 +08:00
|
|
|
|
|
|
|
public bool IsBot => false;
|
2022-01-12 11:39:40 +08:00
|
|
|
|
|
|
|
public bool Equals(RealmUser other)
|
|
|
|
{
|
|
|
|
if (ReferenceEquals(null, other)) return false;
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
|
|
|
return OnlineID == other.OnlineID && Username == other.Username;
|
|
|
|
}
|
2021-11-04 17:13:45 +08:00
|
|
|
}
|
|
|
|
}
|