mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
14 lines
362 B
C#
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;
|
|
} |