blob: 5aa62d7ef12b268a70a34c7dd5776aabd82efaf5 (
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 MatrixUtils.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; }
}
|