mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 19:56:22 +00:00
Added a checkbox to allow all bots.
This commit is contained in:
parent
13713b7092
commit
06551d3c8e
22 changed files with 137 additions and 50 deletions
11
src/ServerManager.Discord/Models/DiscordBotConfig.cs
Normal file
11
src/ServerManager.Discord/Models/DiscordBotConfig.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace ServerManagerTool.DiscordBot.Models
|
||||
{
|
||||
public class DiscordBotConfig
|
||||
{
|
||||
public bool AllowAllBots { get; set; } = false;
|
||||
|
||||
public List<DiscordBotWhitelist> DiscordBotWhitelists { get; set; } = new List<DiscordBotWhitelist>();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue