Files
nadekobot/src/NadekoBot/Db/Models/ImageOnlyChannel.cs
2021-12-29 06:07:16 +01:00

8 lines
189 B
C#

#nullable disable
namespace NadekoBot.Services.Database.Models;
public class ImageOnlyChannel : DbEntity
{
public ulong GuildId { get; set; }
public ulong ChannelId { get; set; }
}