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

namespace LibMatrix.EventTypes.Spec.State;

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