mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
20 lines
469 B
C#
20 lines
469 B
C#
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class DelMsgOnCmdChannel : DbEntity
|
|
{
|
|
public ulong ChannelId { get; set; }
|
|
public bool State { get; set; }
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return ChannelId.GetHashCode();
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
return obj is DelMsgOnCmdChannel x
|
|
&& x.ChannelId == ChannelId;
|
|
}
|
|
}
|
|
}
|