mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
25 lines
587 B
C#
25 lines
587 B
C#
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class SlowmodeIgnoredUser : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
|
|
// override object.Equals
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (obj == null || GetType() != obj.GetType())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return ((SlowmodeIgnoredUser)obj).UserId == UserId;
|
|
}
|
|
|
|
// override object.GetHashCode
|
|
public override int GetHashCode()
|
|
{
|
|
return UserId.GetHashCode();
|
|
}
|
|
}
|
|
}
|