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

namespace LibMatrix.EventTypes.Spec.State;

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

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