about summary refs log tree commit diff
path: root/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs
diff options
context:
space:
mode:
authorEmma [it/its]@Rory& <root@rory.gay>2024-05-14 17:48:26 +0200
committerEmma [it/its]@Rory& <root@rory.gay>2024-05-14 17:48:26 +0200
commitb5860ce2011b96a2919d5306445b0e8bd8408b3d (patch)
treea7f0dc8f05d5b5c78cce06293b3143062102a81b /LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs
parentRaise query size in synapse room query (diff)
downloadLibMatrix-b5860ce2011b96a2919d5306445b0e8bd8408b3d.tar.xz
Add valid room memberhip values as constants
Diffstat (limited to '')
-rw-r--r--LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs
index 31983e0..b2d5596 100644
--- a/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs
+++ b/LibMatrix.EventTypes/Spec/State/RoomInfo/RoomMemberEventContent.cs
@@ -26,4 +26,12 @@ public class RoomMemberEventContent : EventContent {
 
     [JsonPropertyName("join_authorised_via_users_server")]
     public string? JoinAuthorisedViaUsersServer { get; set; }
+    
+    public static class MembershipTypes {
+        public const string Invite = "invite";
+        public const string Join = "join";
+        public const string Leave = "leave";
+        public const string Ban = "ban";
+        public const string Knock = "knock";
+    }
 }
\ No newline at end of file