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

namespace LibMatrix.EventTypes.Spec.State;

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