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

namespace LibMatrix.EventTypes.Common;

[MatrixEvent(EventName = "org.matrix.mjolnir.shortcode")]
public class MjolnirShortcodeEventContent : TimelineEventContent {
    [JsonPropertyName("shortcode")]
    public string? Shortcode { get; set; }
}