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

namespace LibMatrix.StateEventTypes.Spec;

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