about summary refs log tree commit diff
path: root/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
blob: b88f06a09b47ec14d202b2acdb29c077991df036 (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 : EventContent {
    public const string EventId = "gay.rory.dm_room_info";
    [JsonPropertyName("remote_users")]
    public List<string> RemoteUsers { get; set; }
    
    
}