forked from EllieBotDevs/elliebot
11 lines
No EOL
207 B
C#
11 lines
No EOL
207 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace EllieBot.Db.Models;
|
|
|
|
public class HoneypotChannel
|
|
{
|
|
[Key]
|
|
public ulong GuildId { get; set; }
|
|
|
|
public ulong ChannelId { get; set; }
|
|
} |