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

namespace LibMatrix.StateEventTypes.Common;

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