forked from EllieBotDevs/elliebot
14 lines
No EOL
361 B
C#
14 lines
No EOL
361 B
C#
#nullable disable
|
|
namespace EllieBot.Db.Models;
|
|
|
|
public class GCChannelId : DbEntity
|
|
{
|
|
public GuildConfig GuildConfig { get; set; }
|
|
public ulong ChannelId { get; set; }
|
|
|
|
public override bool Equals(object obj)
|
|
=> obj is GCChannelId gc && gc.ChannelId == ChannelId;
|
|
|
|
public override int GetHashCode()
|
|
=> ChannelId.GetHashCode();
|
|
} |