about summary refs log tree commit diff
path: root/LibMatrix.EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs
blob: 48739f2e5a4d7a0af24ca49998b1a9ddbd925ac6 (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; }
}