using Nerd_STF.Lists; using System; namespace NerdsTeaserBot.Modules.Models { [Serializable] public class MiscData { public List announceChannels = new(); public List allowedServers = new(); public ulong changelogChannel; public int levelCooldown = 60; public bool levelMention; public ulong logChannel; public List memeSubs = new(); public ulong messagingC; public List polls = new(); public string prefix = "n;"; public List publishChannels = new(); public List roles = new(); public List tags = new(); } }