mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
15 lines
274 B
C#
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
|
|
} |