about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/RoomCreateEventData.cs
blob: b96c31e187ab62889b4d4f6ee4219fda76c72f39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System.Text.Json.Serialization;
using LibMatrix.Extensions;
using LibMatrix.Interfaces;

namespace LibMatrix.StateEventTypes.Spec;

[MatrixEvent(EventName = "m.room.create")]
public class RoomCreateEventData : IStateEventType {
    [JsonPropertyName("room_version")]
    public string? RoomVersion { get; set; }
    [JsonPropertyName("creator")]
    public string? Creator { get; set; }
    [JsonPropertyName("m.federate")]
    public bool? Federate { get; set; }
    [JsonPropertyName("predecessor")]
    public RoomCreatePredecessor? Predecessor { get; set; }
    [JsonPropertyName("type")]
    public string? Type { get; set; }

    public class RoomCreatePredecessor {
        [JsonPropertyName("room_id")]
        public string? RoomId { get; set; }

        [JsonPropertyName("event_id")]
        public string? EventId { get; set; }
    }
}