mirror of
https://github.com/Jetsparrow/antiantiswearingbot.git
synced 2026-01-20 23:16:08 +03:00
10 lines
278 B
C#
10 lines
278 B
C#
namespace Jetsparrow.Aasb.Commands;
|
|
public class CommandContext
|
|
{
|
|
public string Command { get; set; }
|
|
public string Recipient { get; set; }
|
|
public string ChatId { get; set; }
|
|
public string SenderId { get; set; }
|
|
public string[] Parameters { get; set; }
|
|
}
|