about summary refs log tree commit diff
path: root/LibMatrix/StateEventTypes/Common/MjolnirShortcodeEventData.cs
blob: 7a4b3f3d9cc99e2526ca9619559d7d6557be8693 (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.StateEventTypes.Common;

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