about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/StateEventTypes/RoomTopicEventData.cs
blob: 72651c8be0cef67f7304be2ea9c88c4ba419be77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;
using MatrixRoomUtils.Core.Extensions;
using MatrixRoomUtils.Core.Interfaces;

namespace MatrixRoomUtils.Core.StateEventTypes; 

[MatrixEvent(EventName = "m.room.topic")]
public class RoomTopicEventData : IStateEventType {
    [JsonPropertyName("topic")]
    public string? Topic { get; set; }
}