about summary refs log tree commit diff
path: root/LibMatrix.EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs
blob: b62b44820ef1d2af8ec61795f9009e4906e59a0d (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 : TimelineEventContent {
    public const string EventId = "m.typing";

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