about summary refs log tree commit diff
path: root/LibMatrix.ExampleBot/Bot/Interfaces/CommandContext.cs
blob: ec61a1efa9a1d86a69350f403209c5337a7819fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using LibMatrix.Responses;
using LibMatrix.RoomTypes;
using LibMatrix.StateEventTypes.Spec;

namespace LibMatrix.ExampleBot.Bot.Interfaces;

public class CommandContext {
    public GenericRoom Room { get; set; }
    public StateEventResponse MessageEvent { get; set; }
    public string CommandName => (MessageEvent.TypedContent as RoomMessageEventData).Body.Split(' ')[0][1..];
    public string[] Args => (MessageEvent.TypedContent as RoomMessageEventData).Body.Split(' ')[1..];
}