about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomTypingEventData.cs
blob: 017a117562dc2c9013d1bddcc9cc4d3535bd5138 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;
using MatrixRoomUtils.Core.Extensions;
using MatrixRoomUtils.Core.Interfaces;

namespace MatrixRoomUtils.Core.StateEventTypes.Spec; 

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