12 lines
329 B
C#
12 lines
329 B
C#
using Core.Models.Eft.Dialog;
|
|
using Core.Models.Eft.Profile;
|
|
|
|
namespace Core.Helpers.Dialog.Commando.SptCommands;
|
|
|
|
public interface ISptCommand
|
|
{
|
|
public string GetCommand();
|
|
public string GetCommandHelp();
|
|
public string PerformAction(UserDialogInfo commandHandler, string sessionId, SendMessageRequest request);
|
|
}
|