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

namespace MatrixRoomUtils.Core.StateEventTypes.Common;

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