mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
20 lines
486 B
C#
20 lines
486 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class SlowmodeIgnoredUser : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
|
|
// override object.Equals
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (obj is null || GetType() != obj.GetType())
|
|
return false;
|
|
|
|
return ((SlowmodeIgnoredUser)obj).UserId == UserId;
|
|
}
|
|
|
|
// override object.GetHashCode
|
|
public override int GetHashCode()
|
|
=> UserId.GetHashCode();
|
|
} |