blob: 7eee605287e6aa786e47ce862d631ac8b5bc52ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Text.Json.Serialization;
namespace LibMatrix.EventTypes.Spec.State.RoomInfo;
[MatrixEvent(EventName = EventId)]
public class RoomPinnedEventContent : EventContent {
public const string EventId = "m.room.pinned_events";
[JsonPropertyName("pinned")]
public string[]? PinnedEvents { get; set; }
}
|