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

namespace LibMatrix.EventTypes.Spec.State;

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