about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Spec/RoomAliasEventData.cs
blob: 8d921b29e51b4376e4e33af8ed370ace5632a541 (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.alias")]
public class RoomAliasEventData : IStateEventType {
    [JsonPropertyName("aliases")]
    public List<string>? Aliases { get; set; }
}