blob: f50797ed6377a31c4918990411e877cba7c366e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Text.Json.Serialization;
namespace LibMatrix.EventTypes.Spec.State.Space;
[MatrixEvent(EventName = EventId)]
public class SpaceParentEventContent : EventContent {
public const string EventId = "m.space.parent";
[JsonPropertyName("via")]
public string[]? Via { get; set; }
[JsonPropertyName("canonical")]
public bool? Canonical { get; set; }
}
|