mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
11 lines
208 B
C#
11 lines
208 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class HoneypotChannel
|
|
{
|
|
[Key]
|
|
public ulong GuildId { get; set; }
|
|
|
|
public ulong ChannelId { get; set; }
|
|
} |