blob: d233be49a33ee6c4afc6f4cd0a948d6c8726f98a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Text.Json.Serialization;
namespace LibMatrix.EventTypes.Spec.State;
[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<string>? Via { get; set; }
[JsonPropertyName("suggested")]
public bool? Suggested { get; set; }
}
|