about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Spec/State/RoomInfo/RoomAliasEventContent.cs
blob: 5b0e914e324b03a8d074f326ce8ef82ef971c1d2 (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.EventTypes.Spec.State;

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