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

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; }
    

}