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

namespace LibMatrix.EventTypes.Spec.State;

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