about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/RoomTypingEventData.cs
blob: cebb23879a8224b80f455b9c3bc249cc205a7182 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Text.Json.Serialization;
using LibMatrix.Extensions;
using LibMatrix.Helpers;
using LibMatrix.Interfaces;

namespace LibMatrix.StateEventTypes.Spec;

[MatrixEvent(EventName = "m.typing")]
public class RoomTypingEventData : IStateEventType {
    [JsonPropertyName("user_ids")]
    public string[]? UserIds { get; set; }
}