about summary refs log tree commit diff
path: root/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
blob: 716a3ac35e814eef6a7feb9bec791abf15cec1ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Text.Json.Serialization;
using LibMatrix.EventTypes;
using LibMatrix.Interfaces;

namespace MatrixRoomUtils.LibDMSpace.StateEvents;

[MatrixEvent(EventName = EventId)]
public class DMRoomInfo : TimelineEventContent {
    public const string EventId = "gay.rory.dm_room_info";
    [JsonPropertyName("remote_users")]
    public List<string> RemoteUsers { get; set; }


}