Files
nadekobot/src/Nadeko.Bot.Db/Models/DelMsgOnCmdChannel.cs

14 lines
362 B
C#

#nullable disable
namespace Nadeko.Bot.Db.Models;
public class DelMsgOnCmdChannel : DbEntity
{
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;
}