about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/Extensions/IEnumerableExtensions.cs
blob: 89945298d6232bf122ab1bc7d6317aa12069eda2 (plain) (blame)
1
2
3
4
5
6
7
8
9
using MatrixRoomUtils.Core.Interfaces;

namespace MatrixRoomUtils.Core.Extensions;

[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class MatrixEventAttribute : Attribute {
    public string EventName { get; set; }
    public bool Legacy { get; set; }
}