BotSharp/src/Infrastructure/BotSharp.Abstraction/Repositories/IDatabaseHook.cs
2024-10-31 11:35:01 -05:00

8 lines
159 B
C#

namespace BotSharp.Abstraction.Repositories;
public interface IDatabaseHook
{
// Get database type
string GetDatabaseType(RoleDialogModel message);
}