11 lines
220 B
C#
11 lines
220 B
C#
|
|
using BotSharp.Abstraction.Graph.Models;
|
||
|
|
|
||
|
|
namespace BotSharp.Abstraction.Graph;
|
||
|
|
|
||
|
|
public interface IGraphDb
|
||
|
|
{
|
||
|
|
public string Name { get; }
|
||
|
|
|
||
|
|
Task<GraphSearchData> Search(string query, GraphSearchOptions options);
|
||
|
|
}
|