mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
12 lines
309 B
C#
12 lines
309 B
C#
namespace NadekoBot.Db.Models;
|
|
|
|
public class AntiSpamIgnore : DbEntity
|
|
{
|
|
public ulong ChannelId { get; set; }
|
|
|
|
public override int GetHashCode()
|
|
=> ChannelId.GetHashCode();
|
|
|
|
public override bool Equals(object? obj)
|
|
=> obj is AntiSpamIgnore inst && inst.ChannelId == ChannelId;
|
|
} |