From e5591eef3850a9796cc87386128651a828b70697 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Fri, 6 Oct 2023 18:29:15 +0200 Subject: Small refactors --- ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs (limited to 'ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs') diff --git a/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs b/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs deleted file mode 100644 index b4e1167..0000000 --- a/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Text.Json.Serialization; - -namespace MediaModeratorPoC.Bot.AccountData; - -public class BotData { - [JsonPropertyName("control_room")] - public string ControlRoom { get; set; } = ""; - - [JsonPropertyName("log_room")] - public string? LogRoom { get; set; } = ""; - - [JsonPropertyName("policy_room")] - public string? PolicyRoom { get; set; } = ""; -} -- cgit 1.4.1