about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Spec/State/RoomPinnedEventData.cs
blob: eb02cc7e147c8153be7ca4a104a5e7281d2cc381 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;
using LibMatrix.Helpers;
using LibMatrix.Interfaces;

namespace LibMatrix.EventTypes.Spec.State;

[MatrixEvent(EventName = "m.room.pinned_events")]
public class RoomPinnedEventContent : EventContent {
    [JsonPropertyName("pinned")]
    public string[]? PinnedEvents { get; set; }
}