about summary refs log tree commit diff
path: root/ExampleBots/ModerationBot/StateEventTypes/Policies/Implementations/MessagePolicyContainsText.cs
blob: fa21e2d08b635011d67424461d30dbf75c3bd34c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using LibMatrix.EventTypes;

namespace ModerationBot.StateEventTypes.Policies.Implementations;

/// <summary>
///     Text contains policy event, entity is the text to contain.
/// </summary>
[MatrixEvent(EventName = "gay.rory.moderation.rule.text.contains")]
public class MessagePolicyContainsText : BasePolicy {
}