1 files changed, 0 insertions, 16 deletions
diff --git a/ExampleBots/ModerationBot/PolicyList.cs b/ExampleBots/ModerationBot/PolicyList.cs
deleted file mode 100644
index f291c7b..0000000
--- a/ExampleBots/ModerationBot/PolicyList.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System.Text.Json.Serialization;
-using LibMatrix;
-using LibMatrix.RoomTypes;
-
-namespace ModerationBot;
-
-public class PolicyList {
- [JsonIgnore]
- public GenericRoom Room { get; set; }
-
- [JsonPropertyName("trusted")]
- public bool Trusted { get; set; } = false;
-
- [JsonIgnore]
- public List<StateEventResponse> Policies { get; set; } = new();
-}
|