Files
nadekobot/NadekoBot.Core/Services/Database/Models/GCChannelId.cs
2021-09-06 21:29:22 +02:00

19 lines
474 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class GCChannelId : DbEntity
{
public GuildConfig GuildConfig { get; set; }
public ulong ChannelId { get; set; }
public override bool Equals(object obj)
{
return obj is GCChannelId gc
? gc.ChannelId == ChannelId
: false;
}
public override int GetHashCode() =>
this.ChannelId.GetHashCode();
}
}