about summary refs log tree commit diff
path: root/MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs
blob: 80eeef917570f9b874b6255b7ef95aaa3620a65e (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 DMSpaceInfo : TimelineEventContent {
    public const string EventId = "gay.rory.dm_space_info";

    [JsonPropertyName("is_layered")]
    public bool LayerByUser { get; set; }
    
}