Files
nadekobot/src/Nadeko.Bot.Db/Models/ImageOnlyChannel.cs
2023-03-14 15:48:59 +01:00

15 lines
288 B
C#

#nullable disable
namespace NadekoBot.Services.Database.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
}