antiantiswearingbot/Jetsparrow.Aasb/Commands/CommandString.cs
2023-03-26 22:40:44 +03:00

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; }
}