diff options
Diffstat (limited to 'ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs')
-rw-r--r-- | ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs b/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs new file mode 100644 index 0000000..9b92948 --- /dev/null +++ b/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs @@ -0,0 +1,7 @@ +namespace MediaModeratorPoC.Bot.AccountData; + +public class BotData { + public string ControlRoom { get; set; } = ""; + public string? LogRoom { get; set; } = ""; + public string? PolicyRoom { get; set; } = ""; +} |