about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs
blob: 374ddd44554afb2b93221d9a8298f6c88d63a95e (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 : EventContent {
    [JsonPropertyName("shortcode")]
    public string? Shortcode { get; set; }
}