Files
nadekobot/src/NadekoBot/Db/Models/DelMsgOnCmdChannel.cs
2024-05-18 22:34:34 +00:00

16 lines
405 B
C#

#nullable disable
namespace NadekoBot.Db.Models;
public class DelMsgOnCmdChannel : DbEntity
{
public int GuildConfigId { get; set; }
public ulong ChannelId { get; set; }
public bool State { get; set; }
public override int GetHashCode()
=> ChannelId.GetHashCode();
public override bool Equals(object obj)
=> obj is DelMsgOnCmdChannel x && x.ChannelId == ChannelId;
}