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

namespace LibMatrix.StateEventTypes.Spec;

[MatrixEvent(EventName = "m.room.alias")]
public class RoomAliasEventData : IStateEventType {
    [JsonPropertyName("aliases")]
    public List<string>? Aliases { get; set; }
}