From f11fe491349854526f8d13e8b62458baeb3b23b6 Mon Sep 17 00:00:00 2001 From: "Emma [it/its]@Rory&" Date: Fri, 9 Feb 2024 16:30:49 +0100 Subject: Consistently use EventId for event types --- LibMatrix.EventTypes/Spec/State/Space/SpaceChildEventContent.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'LibMatrix.EventTypes/Spec/State/Space/SpaceChildEventContent.cs') diff --git a/LibMatrix.EventTypes/Spec/State/Space/SpaceChildEventContent.cs b/LibMatrix.EventTypes/Spec/State/Space/SpaceChildEventContent.cs index 2caa791..d233be4 100644 --- a/LibMatrix.EventTypes/Spec/State/Space/SpaceChildEventContent.cs +++ b/LibMatrix.EventTypes/Spec/State/Space/SpaceChildEventContent.cs @@ -2,12 +2,16 @@ using System.Text.Json.Serialization; namespace LibMatrix.EventTypes.Spec.State; -[MatrixEvent(EventName = "m.space.child")] +[MatrixEvent(EventName = EventId)] public class SpaceChildEventContent : EventContent { + public const string EventId = "m.space.child"; + [JsonPropertyName("auto_join")] public bool? AutoJoin { get; set; } + [JsonPropertyName("via")] public List? Via { get; set; } + [JsonPropertyName("suggested")] public bool? Suggested { get; set; } -} +} \ No newline at end of file -- cgit 1.4.1