8 lines
159 B
C#
8 lines
159 B
C#
namespace BotSharp.Abstraction.Repositories;
|
|
|
|
public interface IDatabaseHook
|
|
{
|
|
// Get database type
|
|
string GetDatabaseType(RoleDialogModel message);
|
|
}
|