about summary refs log tree commit diff
path: root/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs')
-rw-r--r--ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs7
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; } = "";
+}