1 files changed, 0 insertions, 18 deletions
diff --git a/AccountData/BotData.cs b/AccountData/BotData.cs
deleted file mode 100644
index de52679..0000000
--- a/AccountData/BotData.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System.Text.Json.Serialization;
-using LibMatrix.EventTypes;
-
-namespace ModerationBot.AccountData;
-
-[MatrixEvent(EventName = EventId)]
-public class BotData {
- public const string EventId = "gay.rory.moderation_bot_data";
-
- [JsonPropertyName("control_room")]
- public string? ControlRoom { get; set; } = "";
-
- [JsonPropertyName("log_room")]
- public string? LogRoom { get; set; } = "";
-
- [JsonPropertyName("default_policy_room")]
- public string? DefaultPolicyRoom { get; set; }
-}
\ No newline at end of file
|