about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs
blob: 0ff2cee966d2966fd1967c2882cf7e43601e5a91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Text.Json.Serialization;
using LibMatrix.Interfaces;

namespace LibMatrix.EventTypes.Spec.State;

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