about summary refs log tree commit diff
path: root/LibMatrix.LegacyEvents.EventTypes/Common/MjolnirShortcodeLegacyEventContent.cs
blob: 25c53a6be61c6213dbf88a3593b0c065fd67e380 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;

namespace LibMatrix.LegacyEvents.EventTypes.Common;

[LegacyMatrixEvent(EventName = EventId)]
public class MjolnirShortcodeLegacyEventContent : TimelineLegacyEventContent {
    public const string EventId = "org.matrix.mjolnir.shortcode";

    [JsonPropertyName("shortcode")]
    public string? Shortcode { get; set; }
}