BotSharp/src/Plugins/BotSharp.Plugin.SqlDriver/Interfaces/ISqlDriverHook.cs
2024-11-12 12:02:25 -06:00

11 lines
306 B
C#

namespace BotSharp.Plugin.SqlDriver.Interfaces;
public interface ISqlDriverHook
{
// Get database type
string GetDatabaseType(RoleDialogModel message);
Task SqlGenerated(RoleDialogModel message);
Task SqlExecuting(RoleDialogModel message);
Task SqlExecuted(RoleDialogModel message);
}