about summary refs log tree commit diff
path: root/LibMatrix/Interfaces/IStateEventType.cs
blob: b1879706ee27974f0286c08826ae4e366ebd1330 (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
using System.Text.Json.Serialization;

namespace LibMatrix.Interfaces;

public abstract class EventContent {
    [JsonPropertyName("m.relates_to")]
    public MessageRelatesTo? RelatesTo { get; set; }

    [JsonPropertyName("m.new_content")]
    public EventContent? NewContent { get; set; }

    public abstract class MessageRelatesTo {
        [JsonPropertyName("m.in_reply_to")]
        public EventInReplyTo? InReplyTo { get; set; }



        public abstract class EventInReplyTo {
            [JsonPropertyName("event_id")]
            public string EventId { get; set; }
        }
    }
}