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

namespace MatrixUtils.LibDMSpace.StateEvents;

[MatrixEvent(EventName = EventId)]
public class DMSpaceInfo : EventContent {
    public const string EventId = "gay.rory.dm_space_info";

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

}