Files
SPT-Server-Build/Libraries/Core/Helpers/Dialogue/Commando/IChatCommand.cs
T
Chomp 1f9a18f37c Removed dupe command RemoveMail that does nothing
Gived `GetMessagePreview` throwing an error when its messages were empty

Cleanup of spt friend commands
2025-01-31 18:31:42 +00:00

13 lines
384 B
C#

using Core.Models.Eft.Dialog;
using Core.Models.Eft.Profile;
namespace Core.Helpers.Dialog.Commando;
public interface IChatCommand
{
public string GetCommandPrefix();
public string GetCommandHelp(string command);
public List<string> GetCommands();
public string Handle(string command, UserDialogInfo commandHandler, string sesssionId, SendMessageRequest request);
}