about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/RoomPinnedEventData.cs
blob: 16144bce16200f9b7d9b0d83b6947b2f52240bb8 (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.StateEventTypes.Spec;

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