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

namespace LibMatrix.ExampleBot.Bot.Interfaces;

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