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

namespace LibMatrix.EventTypes.Spec.State;

[MatrixEvent(EventName = EventId)]
public class RoomTypingEventContent : EventContent {
    public const string EventId = "m.typing";

    [JsonPropertyName("user_ids")]
    public string[]? UserIds { get; set; }
}