about summary refs log tree commit diff
path: root/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OsuFederatedBeatmapApi/Events/AccountData/BotData.cs')
-rw-r--r--OsuFederatedBeatmapApi/Events/AccountData/BotData.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs b/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs
new file mode 100644
index 0000000..0c9744a
--- /dev/null
+++ b/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs
@@ -0,0 +1,11 @@
+using System.Text.Json.Serialization;
+
+namespace OsuFederatedBeatmapApi.Events.AccountData;
+
+public class BotData {
+    [JsonPropertyName("control_room")]
+    public string ControlRoom { get; set; } = "";
+
+    [JsonPropertyName("log_room")]
+    public string? LogRoom { get; set; } = "";
+}