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

namespace MatrixUtils.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; }

    [JsonPropertyName("attributed_user")]
    public string AttributedUser { get; set; }
    

}