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

namespace LibMatrix.StateEventTypes.Common;

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