Files
nadekobot/src/NadekoBot/Db/Models/ImageOnlyChannel.cs

15 lines
274 B
C#

#nullable disable
namespace Nadeko.Bot.Db.Models;
public class ImageOnlyChannel : DbEntity
{
public ulong GuildId { get; set; }
public ulong ChannelId { get; set; }
public OnlyChannelType Type { get; set; }
}
public enum OnlyChannelType
{
Image,
Link
}