about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Spec/State/RoomInfo/RoomAliasEventContent.cs
blob: 28d525c7895704392bd9dce5b0bbb9d0f8b7e409 (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 : TimelineEventContent {
    [JsonPropertyName("aliases")]
    public List<string>? Aliases { get; set; }
}