mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Changed config type of Whitelist to use custom class
This commit is contained in:
parent
a74bc2dc78
commit
197fd1a811
11 changed files with 34 additions and 52 deletions
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
namespace ServerManagerTool.Common.Model
|
||||
{
|
||||
public class DiscordBotWhitelist : DependencyObject
|
||||
public class DiscordBotWhitelistItem : DependencyObject
|
||||
{
|
||||
public static readonly DependencyProperty BotIdProperty = DependencyProperty.Register(nameof(BotId), typeof(string), typeof(DiscordBotWhitelist), new PropertyMetadata(""));
|
||||
public static readonly DependencyProperty BotIdProperty = DependencyProperty.Register(nameof(BotId), typeof(string), typeof(DiscordBotWhitelistItem), new PropertyMetadata(""));
|
||||
|
||||
public string BotId
|
||||
{
|
||||
Loading…
Add table
Add a link
Reference in a new issue