mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
23 lines
507 B
C#
23 lines
507 B
C#
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class SlowmodeIgnoredRole : DbEntity
|
|
{
|
|
public ulong RoleId { get; set; }
|
|
|
|
// override object.Equals
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (obj is null || GetType() != obj.GetType())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return ((SlowmodeIgnoredRole)obj).RoleId == RoleId;
|
|
}
|
|
|
|
// override object.GetHashCode
|
|
public override int GetHashCode()
|
|
{
|
|
return RoleId.GetHashCode();
|
|
}
|
|
} |