1 files changed, 15 insertions, 0 deletions
diff --git a/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
new file mode 100644
index 0000000..75337f5
--- /dev/null
+++ b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
@@ -0,0 +1,15 @@
+using System.Text.Json.Serialization;
+
+namespace LibMatrix.EventTypes.Spec.State;
+
+[MatrixEvent(EventName = "m.room.server_acl")]
+public class RoomServerACLEventContent : TimelineEventContent {
+ [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;
+}
|