about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs
blob: 906735113aa2d091a718f78a5d162e9244ea03cf (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.Common;

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