blob: de5cb261ad92b69509d5c5458ed96b4e17fc30d3 (
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; }
}
|