1 files changed, 0 insertions, 17 deletions
diff --git a/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
deleted file mode 100644
index be83e37..0000000
--- a/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System.Text.Json.Serialization;
-
-namespace LibMatrix.EventTypes.Spec.State;
-
-[MatrixEvent(EventName = EventId)]
-public class RoomServerACLEventContent : EventContent {
- public const string EventId = "m.room.server_acl";
-
- [JsonPropertyName("allow")]
- public List<string>? Allow { get; set; } // = null!;
-
- [JsonPropertyName("deny")]
- public List<string>? Deny { get; set; } // = null!;
-
- [JsonPropertyName("allow_ip_literals")]
- public bool AllowIpLiterals { get; set; } // = false;
-}
\ No newline at end of file
|