1 files changed, 2 insertions, 3 deletions
diff --git a/LibMatrix/EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
index cbd2241..75337f5 100644
--- a/LibMatrix/EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
+++ b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomServerACLEventContent.cs
@@ -1,15 +1,14 @@
using System.Text.Json.Serialization;
-using LibMatrix.Interfaces;
namespace LibMatrix.EventTypes.Spec.State;
[MatrixEvent(EventName = "m.room.server_acl")]
public class RoomServerACLEventContent : TimelineEventContent {
[JsonPropertyName("allow")]
- public List<string> Allow { get; set; } // = null!;
+ public List<string>? Allow { get; set; } // = null!;
[JsonPropertyName("deny")]
- public List<string> Deny { get; set; } // = null!;
+ public List<string>? Deny { get; set; } // = null!;
[JsonPropertyName("allow_ip_literals")]
public bool AllowIpLiterals { get; set; } // = false;
|